diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 08:15:06 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-28 08:15:06 +0000 |
commit | 4a2c99757bc813c3e861da7e0c80104c8e7495e6 (patch) | |
tree | 9b40fd33c36e2053b8f44d98db258b57804b1889 /posix/sched.h | |
parent | eb6c0470932bdfcf0983365cef70849b5f4c97ea (diff) | |
download | glibc-4a2c99757bc813c3e861da7e0c80104c8e7495e6.zip glibc-4a2c99757bc813c3e861da7e0c80104c8e7495e6.tar.gz glibc-4a2c99757bc813c3e861da7e0c80104c8e7495e6.tar.bz2 |
Update.
2001-01-28 Ulrich Drepper <drepper@redhat.com>
* posix/sched.h: Define sched_priority as __sched_priority.
* sysdeps/generic/bits/sched.h (struct sched_param): Rename element
to __sched_priority.
* sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
Diffstat (limited to 'posix/sched.h')
-rw-r--r-- | posix/sched.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/posix/sched.h b/posix/sched.h index 01db91c..6df298b 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 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1999, 2001 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 @@ -30,6 +30,9 @@ /* Get system specific constant and data structure definitions. */ #include <bits/sched.h> +/* Define the real names for the elements of `struct sched_param'. */ +#define sched_priority __sched_priority + __BEGIN_DECLS |