RetroZilla/xpinstall/wizard/libxpnet/GUSI/include/sched.h

17 lines
482 B
C
Raw Normal View History

2015-10-21 05:03:22 +02:00
// <sched.h>=
#ifndef _SCHED_H_
#define _SCHED_H_
#include <sys/cdefs.h>
/* Required by UNIX 98 */
#include <sys/time.h>
__BEGIN_DECLS
// [[sched_yield]] yields the processor for other runnable threads.
//
// <Sched function declarations>=
int sched_yield();
__END_DECLS
#endif /* _SCHED_H_ */