MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / thread_yield

Function thread_yield

vm/ByteCodeTranslator/src/rpmalloc.c:1598–1605  ·  view source on GitHub ↗

Yield the thread remaining timeslice

Source from the content-addressed store, hash-verified

1596
1597//! Yield the thread remaining timeslice
1598static void
1599thread_yield(void) {
1600#ifdef PLATFORM_WINDOWS
1601 YieldProcessor();
1602#else
1603 sched_yield();
1604#endif
1605}
1606
1607// Extern interface
1608

Calls

no outgoing calls

Tested by

no test coverage detected