]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
*** empty log message *** cvs/libc-960913
authorThomas Bushnell, BSG <thomas@gnu.org>
Fri, 13 Sep 1996 06:22:21 +0000 (06:22 +0000)
committerThomas Bushnell, BSG <thomas@gnu.org>
Fri, 13 Sep 1996 06:22:21 +0000 (06:22 +0000)
* sysdeps/mach/Makefile (includes): Add -I$(common-objpfx)mach/.
* sysdeps/mach/hurd/Makefile (includes): Add
-I$(common-objpfx)hurd/.  Reported by Marcus Daniels.

ChangeLog
sysdeps/generic/schedbits.h
sysdeps/mach/Makefile
sysdeps/mach/hurd/Makefile
sysdeps/stub/sched_getp.c
sysdeps/stub/sched_setp.c
sysdeps/stub/sched_sets.c

index 731f3a93611b1897a5ca16c1cc85676b9410de9f..047d0a9f954cce32bbe22db0ab6548e8c7102ad6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Fri Sep 13 01:21:36 1996  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>
 
+       * sysdeps/mach/Makefile (includes): Add -I$(common-objpfx)mach/.
+       * sysdeps/mach/hurd/Makefile (includes): Add
+       -I$(common-objpfx)hurd/.  Reported by Marcus Daniels.
+
        * sysdeps/generic/schedbits.h (struct sched_param): Renamed from
        struct sched_params.
        * sysdeps/stub/sched_setp.c (__sched_setparam): struct
index 21ea377995a610eaa8cc0ef7600921baed06ad08..e2cb00e8425be2a886c444c79255f903cf59748c 100644 (file)
@@ -27,7 +27,7 @@ Boston, MA 02111-1307, USA.  */
 #define SCHED_RR       2
 
 /* Data structure to describe a process' schedulability.  */
-struct sched_params
+struct sched_param
 {
   int sched_priority;
 };
index 2f2a12cb3bee95276b4a602e82c13a2a8b0b3a9b..e035d5a82ada3558f8e9ccc41bd919aff1517b26 100644 (file)
@@ -19,7 +19,8 @@
 ifdef in-Makerules
 
 # Look for header files in mach/ under the top-level library source directory.
-includes += -I$(..)mach
+# Look for generated header files where they get created.
+includes += -I$(..)mach -I$(common-objpfx)mach/
 
 ifneq (mach,$(subdir))
 # Subdirectories other than mach/ might use the generated Mach headers.
index 1fe99f3125993cf23a8cc5900628432c75b2dbcb..c33cb7d5feca58f4e63add73eb56e5229adb4375 100644 (file)
@@ -21,7 +21,8 @@ ifdef in-Makerules
 subdirs := $(filter-out sunrpc,$(subdirs)) # XXX skip broken dirs
 
 # Look for header files in hurd/ under the top-level library source directory.
-includes += -I$(..)hurd
+# Look for generated header files where they get created.
+includes += -I$(..)hurd -I$(common-objpfx)hurd/
 
 # Do not use any assembly code from sysdeps/unix (and subdirectories).
 # This bypasses all the system call stubs and uses any existing posix or
index 3fc0b458c1bfc795b2857fd1dc36b2b35825a1b1..0da92bcd2cce69624c42ea2ebc0dcfc01a083659 100644 (file)
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA.  */
 
 /* Retrieve scheduling parameters for a particular process.  */
 int
-__sched_getparam (pid_t pid, struct sched_params *param)
+__sched_getparam (pid_t pid, struct sched_param *param)
 {
   errno = ENOSYS;
   return -1;
index 10b0cb3c6c4f7df4e76346198860afc980f5d561..513c717b033683914600182df9d6b701a66bb703 100644 (file)
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA.  */
 
 /* Set scheduling parameters for a process.  */
 int
-__sched_setparam (pid_t pid, const struct sched_params *param)
+__sched_setparam (pid_t pid, const struct sched_param *param)
 {
   errno = ENOSYS;
   return -1;
index 99113b1ad7db2adbdfcec6f10c879c6fc07f538b..98008e61385884ae53cff69f4bb8a3bdc1603821 100644 (file)
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA.  */
 
 /* Set scheduling algorithm and/or parameters for a process.  */
 int
-__sched_setscheduler (pid_t pid, int policy, const struct sched_params *param)
+__sched_setscheduler (pid_t pid, int policy, const struct sched_param *param)
 {
   errno = ENOSYS;
   return -1;