aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/sysdeps
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-12-27 17:18:07 +0000
committerAndreas Jaeger <aj@suse.de>2000-12-27 17:18:07 +0000
commit27ee0a559513db0d0e650761b6f4268b39199c74 (patch)
tree9ce06a8596a1a5befd819bf1dcba82472d678a6b /linuxthreads/sysdeps
parenta375a533a2445079390907b962464a379d25f5d5 (diff)
downloadglibc-27ee0a559513db0d0e650761b6f4268b39199c74.zip
glibc-27ee0a559513db0d0e650761b6f4268b39199c74.tar.gz
glibc-27ee0a559513db0d0e650761b6f4268b39199c74.tar.bz2
Update.
* include/sys/wait.h: Add some prototypes. * Rules (dummy.c): Create also prototype to shut up GCC. 2000-12-27 Andreas Jaeger <aj@suse.de>
Diffstat (limited to 'linuxthreads/sysdeps')
-rw-r--r--linuxthreads/sysdeps/alpha/pspinlock.c1
-rw-r--r--linuxthreads/sysdeps/arm/pspinlock.c1
-rw-r--r--linuxthreads/sysdeps/hppa/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/i386/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/ia64/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/m68k/pspinlock.c1
-rw-r--r--linuxthreads/sysdeps/mips/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/powerpc/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/s390/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/sh/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/sparc/sparc32/pspinlock.c2
-rw-r--r--linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c1
-rw-r--r--linuxthreads/sysdeps/sparc/sparc64/pspinlock.c2
13 files changed, 13 insertions, 9 deletions
diff --git a/linuxthreads/sysdeps/alpha/pspinlock.c b/linuxthreads/sysdeps/alpha/pspinlock.c
index 0d871b4..574c638 100644
--- a/linuxthreads/sysdeps/alpha/pspinlock.c
+++ b/linuxthreads/sysdeps/alpha/pspinlock.c
@@ -19,6 +19,7 @@
#include <errno.h>
#include <pthread.h>
+#include "internals.h"
/* This implementation is similar to the one used in the Linux kernel.
diff --git a/linuxthreads/sysdeps/arm/pspinlock.c b/linuxthreads/sysdeps/arm/pspinlock.c
index a56881a..010ad33 100644
--- a/linuxthreads/sysdeps/arm/pspinlock.c
+++ b/linuxthreads/sysdeps/arm/pspinlock.c
@@ -19,6 +19,7 @@
#include <errno.h>
#include <pthread.h>
+#include "internals.h"
int
diff --git a/linuxthreads/sysdeps/hppa/pspinlock.c b/linuxthreads/sysdeps/hppa/pspinlock.c
index 1b1511f..6a858bf 100644
--- a/linuxthreads/sysdeps/hppa/pspinlock.c
+++ b/linuxthreads/sysdeps/hppa/pspinlock.c
@@ -19,7 +19,7 @@
#include <errno.h>
#include <pthread.h>
-
+#include "internals.h"
int
__pthread_spin_lock (pthread_spinlock_t *lock)
diff --git a/linuxthreads/sysdeps/i386/pspinlock.c b/linuxthreads/sysdeps/i386/pspinlock.c
index 426e63a..5d24238 100644
--- a/linuxthreads/sysdeps/i386/pspinlock.c
+++ b/linuxthreads/sysdeps/i386/pspinlock.c
@@ -19,7 +19,7 @@
#include <errno.h>
#include <pthread.h>
-
+#include "internals.h"
/* This implementation is similar to the one used in the Linux kernel.
But the kernel is byte instructions for the memory access. This is
diff --git a/linuxthreads/sysdeps/ia64/pspinlock.c b/linuxthreads/sysdeps/ia64/pspinlock.c
index ada28bd..174e38d 100644
--- a/linuxthreads/sysdeps/ia64/pspinlock.c
+++ b/linuxthreads/sysdeps/ia64/pspinlock.c
@@ -20,7 +20,7 @@
#include <errno.h>
#include <pthread.h>
-
+#include "internals.h"
/* This implementation is inspired by the implementation used in the
Linux kernel. */
diff --git a/linuxthreads/sysdeps/m68k/pspinlock.c b/linuxthreads/sysdeps/m68k/pspinlock.c
index 994adc8..38e490f 100644
--- a/linuxthreads/sysdeps/m68k/pspinlock.c
+++ b/linuxthreads/sysdeps/m68k/pspinlock.c
@@ -19,6 +19,7 @@
#include <errno.h>
#include <pthread.h>
+#include "internals.h"
int
diff --git a/linuxthreads/sysdeps/mips/pspinlock.c b/linuxthreads/sysdeps/mips/pspinlock.c
index 7df3040..ab73d1d 100644
--- a/linuxthreads/sysdeps/mips/pspinlock.c
+++ b/linuxthreads/sysdeps/mips/pspinlock.c
@@ -21,7 +21,7 @@
#include <pthread.h>
#include <sgidefs.h>
#include <sys/tas.h>
-
+#include "internals.h"
#if (_MIPS_ISA >= _MIPS_ISA_MIPS2)
diff --git a/linuxthreads/sysdeps/powerpc/pspinlock.c b/linuxthreads/sysdeps/powerpc/pspinlock.c
index 77cad0c..80e2727 100644
--- a/linuxthreads/sysdeps/powerpc/pspinlock.c
+++ b/linuxthreads/sysdeps/powerpc/pspinlock.c
@@ -20,7 +20,7 @@
#include <errno.h>
#include <pthread.h>
#include <pt-machine.h>
-
+#include "internals.h"
int
__pthread_spin_lock (pthread_spinlock_t *lock)
diff --git a/linuxthreads/sysdeps/s390/pspinlock.c b/linuxthreads/sysdeps/s390/pspinlock.c
index 08231bf..eeca51f 100644
--- a/linuxthreads/sysdeps/s390/pspinlock.c
+++ b/linuxthreads/sysdeps/s390/pspinlock.c
@@ -20,7 +20,7 @@
#include <errno.h>
#include <pthread.h>
-
+#include "internals.h"
/* This implementation is similar to the one used in the Linux kernel.
But the kernel is byte instructions for the memory access. This is
diff --git a/linuxthreads/sysdeps/sh/pspinlock.c b/linuxthreads/sysdeps/sh/pspinlock.c
index be9fc80..2da3bc4 100644
--- a/linuxthreads/sysdeps/sh/pspinlock.c
+++ b/linuxthreads/sysdeps/sh/pspinlock.c
@@ -19,7 +19,7 @@
#include <errno.h>
#include <pthread.h>
-
+#include "internals.h"
int
__pthread_spin_lock (pthread_spinlock_t *lock)
diff --git a/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c b/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c
index 1788d7a..be11817 100644
--- a/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c
+++ b/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c
@@ -19,7 +19,7 @@
#include <errno.h>
#include <pthread.h>
-
+#include "internals.h"
/* This implementation is similar to the one used in the Linux kernel. */
int
diff --git a/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c b/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c
index 99ffdc0..a762650 100644
--- a/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c
+++ b/linuxthreads/sysdeps/sparc/sparc32/sparcv9/pspinlock.c
@@ -19,6 +19,7 @@
#include <errno.h>
#include <pthread.h>
+#include "internals.h"
/* This implementation is similar to the one used in the Linux kernel. */
diff --git a/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c b/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c
index 1b7fa15..2106e44 100644
--- a/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c
+++ b/linuxthreads/sysdeps/sparc/sparc64/pspinlock.c
@@ -19,7 +19,7 @@
#include <errno.h>
#include <pthread.h>
-
+#include "internals.h"
/* This implementation is similar to the one used in the Linux kernel. */
int