// = #ifndef _SCHED_H_ #define _SCHED_H_ #include /* Required by UNIX 98 */ #include __BEGIN_DECLS // [[sched_yield]] yields the processor for other runnable threads. // // = int sched_yield(); __END_DECLS #endif /* _SCHED_H_ */