summaryrefslogtreecommitdiffstats
path: root/libpthread/linuxthreads/sysdeps/powerpc/pspinlock.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-23 02:35:04 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-23 02:35:04 +0000
commit0f2c86bee22bc756814129b430b0687c7e23df81 (patch)
tree34bf3df7ba73405de13432cd82002540c073fc05 /libpthread/linuxthreads/sysdeps/powerpc/pspinlock.c
parentd8284756b901217626556772ea91a3839a3ebfb4 (diff)
downloaduClibc-alpine-0f2c86bee22bc756814129b430b0687c7e23df81.tar.bz2
uClibc-alpine-0f2c86bee22bc756814129b430b0687c7e23df81.tar.xz
Copy from trunk.
Diffstat (limited to 'libpthread/linuxthreads/sysdeps/powerpc/pspinlock.c')
-rw-r--r--libpthread/linuxthreads/sysdeps/powerpc/pspinlock.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libpthread/linuxthreads/sysdeps/powerpc/pspinlock.c b/libpthread/linuxthreads/sysdeps/powerpc/pspinlock.c
new file mode 100644
index 000000000..bb88a0690
--- /dev/null
+++ b/libpthread/linuxthreads/sysdeps/powerpc/pspinlock.c
@@ -0,0 +1,8 @@
+#include <features.h>
+#include <bits/wordsize.h>
+
+#if __WORDSIZE == 32
+# include "powerpc32/pspinlock.c"
+#else
+# include "powerpc64/pspinlock.c"
+#endif