From 93a470c71a236c6fbf4f2a207eb3961754187e80 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 7 May 1996 14:57:38 +0000 Subject: Tue May 7 10:51:52 1996 Roland McGrath * wcsmbs/wcwidth.c, wcsmbs/wcswidth.c: Fixed typos. * sysdeps/unix/sysv/linux/sys/mman.h: Fixed typo. * sysdeps/stub/sched_getp.c: Add missing #include . * sysdeps/stub/sched_sets.c: Likewise. * sysdeps/stub/sched_setp.c: Likewise. * sysdeps/stub/sched_rr_gi.c: Likewise. * sysdeps/stub/sched_gets.c: Likewise. * hurd/hurdsig.c: Use struct hurd_signal_detail. * hurd/hurd/fd.h (_hurd_fd_error): Likewise. * sysdeps/mach/hurd/sysd-stdio.c (fd_fail): Likewise. --- sysdeps/stub/sched_getp.c | 3 ++- sysdeps/stub/sched_gets.c | 1 + sysdeps/stub/sched_rr_gi.c | 1 + sysdeps/stub/sched_setp.c | 3 ++- sysdeps/stub/sched_sets.c | 3 ++- 5 files changed, 8 insertions(+), 3 deletions(-) (limited to 'sysdeps/stub') diff --git a/sysdeps/stub/sched_getp.c b/sysdeps/stub/sched_getp.c index 081458a1b6..3fc0b458c1 100644 --- a/sysdeps/stub/sched_getp.c +++ b/sysdeps/stub/sched_getp.c @@ -17,12 +17,13 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include +#include #include /* Retrieve scheduling parameters for a particular process. */ int -__sched_getparam (pid_t pid, struct sched_param *param) +__sched_getparam (pid_t pid, struct sched_params *param) { errno = ENOSYS; return -1; diff --git a/sysdeps/stub/sched_gets.c b/sysdeps/stub/sched_gets.c index 4cbfb0e76b..bb64838908 100644 --- a/sysdeps/stub/sched_gets.c +++ b/sysdeps/stub/sched_gets.c @@ -18,6 +18,7 @@ Boston, MA 02111-1307, USA. */ #include #include +#include /* Retrieve scheduling algorithm for a particular purpose. */ diff --git a/sysdeps/stub/sched_rr_gi.c b/sysdeps/stub/sched_rr_gi.c index 27344e0dc3..b818561287 100644 --- a/sysdeps/stub/sched_rr_gi.c +++ b/sysdeps/stub/sched_rr_gi.c @@ -18,6 +18,7 @@ Boston, MA 02111-1307, USA. */ #include #include +#include /* Get the SCHED_RR interval for the named process. */ diff --git a/sysdeps/stub/sched_setp.c b/sysdeps/stub/sched_setp.c index 2830618700..10b0cb3c6c 100644 --- a/sysdeps/stub/sched_setp.c +++ b/sysdeps/stub/sched_setp.c @@ -17,12 +17,13 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include +#include #include /* Set scheduling parameters for a process. */ int -__sched_setparam (pid_t pid, const struct sched_param *param) +__sched_setparam (pid_t pid, const struct sched_params *param) { errno = ENOSYS; return -1; diff --git a/sysdeps/stub/sched_sets.c b/sysdeps/stub/sched_sets.c index e013e7a554..99113b1ad7 100644 --- a/sysdeps/stub/sched_sets.c +++ b/sysdeps/stub/sched_sets.c @@ -18,11 +18,12 @@ Boston, MA 02111-1307, USA. */ #include #include +#include /* Set scheduling algorithm and/or parameters for a process. */ int -__sched_setscheduler (pid_t pid, int policy, const struct sched_param *param) +__sched_setscheduler (pid_t pid, int policy, const struct sched_params *param) { errno = ENOSYS; return -1; -- cgit v1.2.3