Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/F-Stack/f-stack
/ SetFlag
Method
SetFlag
adapter/micro_thread/micro_thread.h:263–265 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
261
}
262
263
void SetFlag(ThreadFlag flag) {
264
_flag = (ThreadFlag)(_flag | flag);
265
};
266
void UnsetFlag(ThreadFlag flag) {
267
_flag = (ThreadFlag)(_flag & ~flag);
268
};
Callers
7
AddSubThread
Method · 0.80
InitialPool
Method · 0.80
FreeThread
Method · 0.80
InsertSleep
Method · 0.80
InsertIoWait
Method · 0.80
InsertRunable
Method · 0.80
InsertPend
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected