#include <MaskSet.h>
|
| void | reset () |
| | Clear all bits in all sets.
|
| void | sync () |
| | Resync internals after select() call.
|
| int | max_fd () |
| | Return maximum value of the file descriptor in the Set.
|
| void | dump () |
| | Write current state of MaskSet object to log file.
|
Definition at line 24 of file MaskSet.h.
◆ dump()
| void ASSA::MaskSet::dump |
( |
| ) |
|
|
inline |
Write current state of MaskSet object to log file.
Definition at line 79 of file MaskSet.h.
81{
87}
#define DL(X)
A macro for writing debug message to the Logger.
FdSet m_rset
Read fds set.
FdSet m_eset
Exception fds set.
FdSet m_wset
Write fds set.
@ REACTTRACE
Extended Reactor/PrioriyQueue messages.
References DL, m_eset, m_rset, m_wset, and ASSA::REACTTRACE.
◆ max_fd()
| int ASSA::MaskSet::max_fd |
( |
| ) |
|
|
inline |
Return maximum value of the file descriptor in the Set.
Definition at line 70 of file MaskSet.h.
72{
73 return (std::max (
m_rset.maxInSet (),
74 std::max (
m_wset.maxInSet (),
76}
References m_eset, m_rset, and m_wset.
◆ reset()
| void ASSA::MaskSet::reset |
( |
| ) |
|
|
inline |
◆ sync()
| void ASSA::MaskSet::sync |
( |
| ) |
|
|
inline |
◆ m_eset
| FdSet ASSA::MaskSet::m_eset |
◆ m_rset
| FdSet ASSA::MaskSet::m_rset |
◆ m_wset
| FdSet ASSA::MaskSet::m_wset |
The documentation for this class was generated from the following file: