MCPcopy 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

AddSubThreadMethod · 0.80
InitialPoolMethod · 0.80
FreeThreadMethod · 0.80
InsertSleepMethod · 0.80
InsertIoWaitMethod · 0.80
InsertRunableMethod · 0.80
InsertPendMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected