Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/F-Stack/f-stack
/ UnsetFlag
Method
UnsetFlag
adapter/micro_thread/micro_thread.h:266–268 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
264
_flag = (ThreadFlag)(_flag | flag);
265
};
266
void UnsetFlag(ThreadFlag flag) {
267
_flag = (ThreadFlag)(_flag & ~flag);
268
};
269
bool HasFlag(ThreadFlag flag) {
270
return _flag & flag;
271
};
Callers
6
RemoveSubThread
Method · 0.80
AllocThread
Method · 0.80
RemoveSleep
Method · 0.80
RemoveIoWait
Method · 0.80
RemoveRunable
Method · 0.80
RemovePend
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected