summaryrefslogtreecommitdiff
path: root/posix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-02-06 19:15:14 +0000
committerUlrich Drepper <drepper@redhat.com>2003-02-06 19:15:14 +0000
commitce96c93de5d57d917d300c4c80ed8ffc9141a874 (patch)
tree8bef60846465ac9185d91cd314d2cd46fba1b2b0 /posix
parent11090a992df365ac6b107027f2c932028172dcbf (diff)
Update.
2002-11-24 Robert Love <rml@tech9.net> * posix/sched.h: Second parameter of sched_setaffinity and sched_getaffinity is `unsigned int', not `unsigned long'. * sysdeps/generic/sched_setaffinity.c: Likewise. * sysdeps/generic/sched_getaffinity.c: Likewise. Reported by John Levon <levon@movementarian.org>.
Diffstat (limited to 'posix')
-rw-r--r--posix/sched.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/sched.h b/posix/sched.h
index fe38c10974..ce00d9df4a 100644
--- a/posix/sched.h
+++ b/posix/sched.h
@@ -1,5 +1,5 @@
/* Definitions for POSIX 1003.1b-1993 (aka POSIX.4) scheduling interface.
- Copyright (C) 1996, 1997, 1999, 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1996,1997,1999,2001,2002,2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -65,11 +65,11 @@ extern int sched_rr_get_interval (__pid_t __pid, struct timespec *__t) __THROW;
#ifdef __USE_GNU
/* Set the CPU affinity for a task */
-extern int sched_setaffinity (__pid_t __pid, unsigned long int __len,
+extern int sched_setaffinity (__pid_t __pid, unsigned int __len,
unsigned long int *__mask) __THROW;
/* Get the CPU affinity for a task */
-extern int sched_getaffinity (__pid_t __pid, unsigned long int __len,
+extern int sched_getaffinity (__pid_t __pid, unsigned int __len,
unsigned long int *__mask) __THROW;
#endif