MCPcopy Create free account
hub / github.com/FastLED/FastLED / isShutdownRequested

Method isShutdownRequested

src/platforms/coroutine_runtime.h:73–73  ·  view source on GitHub ↗

Check if shutdown has been requested Background threads should poll this and exit early when true.

Source from the content-addressed store, hash-verified

71 /// Check if shutdown has been requested
72 /// Background threads should poll this and exit early when true.
73 bool isShutdownRequested() FL_NOEXCEPT { return mShutdownRequested.load(); }
74
75 /// Request shutdown — background threads will see this via isShutdownRequested()
76 void requestShutdown() FL_NOEXCEPT { mShutdownRequested.store(true); }

Callers 3

is_shutdown_requestedFunction · 0.80
delayed_resolveFunction · 0.80
delayed_rejectFunction · 0.80

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected