gem5
v20.0.0.0
|
WaiterState defines internal state of a waiter thread. More...
#include <futex_map.hh>
Public Member Functions | |
WaiterState (ThreadContext *_tc, int _bitmask) | |
this constructor is used if futex ops with bitset are used More... | |
WaiterState (ThreadContext *_tc) | |
if bitset is not defined, just set bitmask to 0xffffffff More... | |
bool | checkMask (int wakeup_bitmask) const |
return true if the bit-wise AND of the wakeup_bitmask given by a waking thread and this thread's internal bitmask is non-zero More... | |
Public Attributes | |
ThreadContext * | tc |
int | bitmask |
WaiterState defines internal state of a waiter thread.
The state includes a pointer to the thread's context and its associated bitmask.
Definition at line 82 of file futex_map.hh.
|
inline |
this constructor is used if futex ops with bitset are used
Definition at line 90 of file futex_map.hh.
|
inline |
if bitset is not defined, just set bitmask to 0xffffffff
Definition at line 97 of file futex_map.hh.
|
inline |
return true if the bit-wise AND of the wakeup_bitmask given by a waking thread and this thread's internal bitmask is non-zero
Definition at line 106 of file futex_map.hh.
Referenced by FutexMap::wakeup_bitset().
int WaiterState::bitmask |
Definition at line 85 of file futex_map.hh.
ThreadContext* WaiterState::tc |
Definition at line 84 of file futex_map.hh.
Referenced by FutexMap::wakeup_bitset().