try to make sure compiler/include/mmakefile is always refreshed correctly.
[AROS.git] / rom / exec / schedule.c
blob5b15cc661a33fd308d0c9910de072fa060961392
1 /*
2 Copyright © 1995-2017, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
9 #include <exec/types.h>
10 #include <exec/execbase.h>
11 #include <aros/libcall.h>
12 #include <aros/atomic.h>
14 #include "exec_intern.h"
16 /*****************************************************************************
18 NAME */
19 #include <proto/exec.h>
21 AROS_LH0(void, Schedule,
23 /* SYNOPSIS */
25 /* LOCATION */
26 struct ExecBase *, SysBase, 7, Exec)
28 /* FUNCTION
29 PRIVATE architecture specific routine for relinquishing CPU time
31 INPUTS
32 None
34 RESULT
35 None
37 NOTES
38 This function was private in AmigaOS(tm) up to v3.1. There's no guarantee
39 that it will continue to exist in other systems.
41 EXAMPLE
43 BUGS
45 SEE ALSO
47 INTERNALS
49 HISTORY
51 ******************************************************************************/
53 AROS_LIBFUNC_INIT
55 AROS_FUNCTION_NOT_IMPLEMENTED("Exec");
57 AROS_LIBFUNC_EXIT
58 } /* Schedule */