16 lines
169 B
C
16 lines
169 B
C
|
#ifndef _SCHED_H
|
||
|
#define _SCHED_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
/* Yield the processor. */
|
||
|
int sched_yield(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|