aboutsummaryrefslogtreecommitdiff
path: root/conform/data/sched.h-data
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-08-25 23:53:55 +0000
committerUlrich Drepper <drepper@redhat.com>1999-08-25 23:53:55 +0000
commit7f42d3dd6f91a6336baceccd98dc7fe516d959fe (patch)
tree0942f9a13181fea447bfeac4b0078d6090bbb6b3 /conform/data/sched.h-data
parent050838a4919a2dfb6da0124eacdfad0a22259251 (diff)
downloadglibc-7f42d3dd6f91a6336baceccd98dc7fe516d959fe.zip
glibc-7f42d3dd6f91a6336baceccd98dc7fe516d959fe.tar.gz
glibc-7f42d3dd6f91a6336baceccd98dc7fe516d959fe.tar.bz2
Update.
* conform/conformtest.pl (@headers): Add search.h, sched.h, regex.h, pwd.h, and pthread.h. * conform/data/pthread.h-data: New file. * conform/data/pwd.h-data: New file. * conform/data/regex.h-data: New file. * conform/data/sched.h-data: New file. * conform/data/search.h-data: New file. * NAMESPACE: Add REG_ for regex.h. * locale/langinfo.h: Don't define YESSTR and NOSTR for XPG6 since they are removed.
Diffstat (limited to 'conform/data/sched.h-data')
-rw-r--r--conform/data/sched.h-data22
1 files changed, 22 insertions, 0 deletions
diff --git a/conform/data/sched.h-data b/conform/data/sched.h-data
new file mode 100644
index 0000000..8194bcb
--- /dev/null
+++ b/conform/data/sched.h-data
@@ -0,0 +1,22 @@
+#ifndef ISO
+type {struct sched_param}
+element {struct sched_param} int sched_priority
+
+constant SCHED_FIFO
+constant SCHED_RR
+constant SCHED_OTHER
+
+function int sched_get_priority_max (int)
+function int sched_get_priority_min (int)
+function int sched_getparam (pid_t, struct sched_param*)
+function int sched_getscheduler (pid_t)
+function int sched_rr_get_interval (pid_t, struct timespec*)
+function int sched_setparam (pid_t, const struct sched_param*)
+function int sched_setscheduler (pid_t, int, const struct sched_param*)
+function int sched_yield (void)
+
+allow-header time.h
+
+allow sched_*
+allow SCHED_*
+#endif