diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-06 19:15:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-06 19:15:14 +0000 |
commit | ce96c93de5d57d917d300c4c80ed8ffc9141a874 (patch) | |
tree | 8bef60846465ac9185d91cd314d2cd46fba1b2b0 /sysdeps/generic | |
parent | 11090a992df365ac6b107027f2c932028172dcbf (diff) | |
download | glibc-ce96c93de5d57d917d300c4c80ed8ffc9141a874.tar glibc-ce96c93de5d57d917d300c4c80ed8ffc9141a874.tar.gz glibc-ce96c93de5d57d917d300c4c80ed8ffc9141a874.tar.bz2 glibc-ce96c93de5d57d917d300c4c80ed8ffc9141a874.zip |
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 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/bits/confname.h | 6 | ||||
-rw-r--r-- | sysdeps/generic/sched_getaffinity.c | 4 | ||||
-rw-r--r-- | sysdeps/generic/sched_setaffinity.c | 4 |
3 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/generic/bits/confname.h b/sysdeps/generic/bits/confname.h index ba8868af49..6cb5b3f7fb 100644 --- a/sysdeps/generic/bits/confname.h +++ b/sysdeps/generic/bits/confname.h @@ -1,5 +1,5 @@ /* `sysconf', `pathconf', and `confstr' NAME values. Generic version. - Copyright (C) 1993, 1995-1998, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1993,1995-1998,2000,2001,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 @@ -474,7 +474,7 @@ enum # if (defined __USE_FILE_OFFSET64 || defined __USE_LARGEFILE64 \ || defined __USE_LARGEFILE) _CS_LFS_CFLAGS = 1000, -# define _CS_LFS_CFLAGS _CS_LFS_CFLAGS +# define _CS_LFS_CFLAGS _CS_LFS_CFLAGS _CS_LFS_LDFLAGS, # define _CS_LFS_LDFLAGS _CS_LFS_LDFLAGS _CS_LFS_LIBS, @@ -486,7 +486,7 @@ enum _CS_LFS64_LDFLAGS, # define _CS_LFS64_LDFLAGS _CS_LFS64_LDFLAGS _CS_LFS64_LIBS, -# define _CS_LFS64_LIBS _CS_LFS64_LIBS +# define _CS_LFS64_LIBS _CS_LFS64_LIBS _CS_LFS64_LINTFLAGS, # define _CS_LFS64_LINTFLAGS _CS_LFS64_LINTFLAGS # endif diff --git a/sysdeps/generic/sched_getaffinity.c b/sysdeps/generic/sched_getaffinity.c index fc3f48f9a3..5c444cb5c8 100644 --- a/sysdeps/generic/sched_getaffinity.c +++ b/sysdeps/generic/sched_getaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 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 @@ -25,7 +25,7 @@ int sched_getaffinity (pid, len, mask) pid_t pid; - unsigned long int len; + unsigned int len; unsigned long int *mask; { __set_errno (ENOSYS); diff --git a/sysdeps/generic/sched_setaffinity.c b/sysdeps/generic/sched_setaffinity.c index 0f80184095..e734e70b91 100644 --- a/sysdeps/generic/sched_setaffinity.c +++ b/sysdeps/generic/sched_setaffinity.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2002 Free Software Foundation, Inc. +/* Copyright (C) 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 @@ -25,7 +25,7 @@ int sched_setaffinity (pid, len, mask) pid_t pid; - unsigned long int len; + unsigned int len; unsigned long int *mask; { __set_errno (ENOSYS); |