#include <sched.h> int sched_yield( void );
This routine always returns zero to indicate success.
This call forces the calling thread to yield the processor to another thread. Normally this is used to implement voluntary round-robin task scheduling.
NONE
Copyright © 1988-2004 OAR Corporation