Function: thread-yield

thread-yield is a function defined in thread.c.

Signature

(thread-yield)

Documentation

Yield the CPU to another thread.

Source Code

// Defined in /usr/src/emacs/src/thread.c
{
  flush_stack_call_func (yield_callback, NULL);
  return Qnil;
}