__aeabi_ldivmod: fix sign logic
[minix.git] / include / sched.h
blob444c66c29254e66e1976d2a908e8ff2e2dc08fca
1 /* $NetBSD: sched.h,v 1.12 2009/01/11 03:04:12 christos Exp $ */
3 /*-
4 * Copyright (c) 2001 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Nathan J. Williams.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 /* LSC: It seems we actually do not want this header to be visible. */
33 #ifndef __minix
34 #ifndef _SCHED_H_
35 #define _SCHED_H_
37 #include <sys/cdefs.h>
38 #include <sys/featuretest.h>
39 #include <sys/sched.h>
41 /* Required by POSIX 1003.1, section 13.1, lines 12-13. */
42 #include <time.h>
44 __BEGIN_DECLS
45 int sched_setparam(pid_t, const struct sched_param *);
46 int sched_getparam(pid_t, struct sched_param *);
47 int sched_setscheduler(pid_t, int, const struct sched_param *);
48 int sched_getscheduler(pid_t);
49 int sched_get_priority_max(int);
50 int sched_get_priority_min(int);
51 #ifndef __LIBC12_SOURCE__
52 int sched_rr_get_interval(pid_t, struct timespec *)
53 __RENAME(__sched_rr_get_interval50);
54 #endif
56 int sched_yield(void);
57 int __libc_thr_yield(void);
58 __END_DECLS
60 #ifndef __LIBPTHREAD_SOURCE__
61 #define sched_yield __libc_thr_yield
62 #endif /* __LIBPTHREAD_SOURCE__ */
64 #if defined(_NETBSD_SOURCE)
66 __BEGIN_DECLS
68 /* Process affinity functions (not portable) */
69 int sched_getaffinity_np(pid_t, size_t, cpuset_t *);
70 int sched_setaffinity_np(pid_t, size_t, cpuset_t *);
72 /* Historical functions, not defined in standard */
73 pid_t clone(int (*)(void *), void *, int, void *);
74 pid_t __clone(int (*)(void *), void *, int, void *);
76 __END_DECLS
78 #endif /* _NETBSD_SOURCE */
80 #endif /* _SCHED_H_ */
82 #endif /* !__minix */