MCPcopy 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

RemoveSubThreadMethod · 0.80
AllocThreadMethod · 0.80
RemoveSleepMethod · 0.80
RemoveIoWaitMethod · 0.80
RemoveRunableMethod · 0.80
RemovePendMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected