*** empty log message ***
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 731f3a9..047d0a9 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 21ea377..e2cb00e 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 2f2a12c..e035d5a 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 1fe99f3..c33cb7d 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 3fc0b45..0da92bc 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 10b0cb3..513c717 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 99113b1..98008e6 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;