diff options
author | austinf <austinf@localhost> | 2009-03-19 07:29:30 +0000 |
---|---|---|
committer | austinf <austinf@localhost> | 2009-03-19 07:29:30 +0000 |
commit | 2ea44632aac286a927069a1fb1f979db23c0b3c4 (patch) | |
tree | 405585f334c03e95c106924c03ed4642f80874a0 /libpthread/nptl/sysdeps/sparc/pthreaddef.h | |
parent | d38a60ef0325122761dea450cc163ac036d896e7 (diff) | |
download | uClibc-alpine-2ea44632aac286a927069a1fb1f979db23c0b3c4.tar.bz2 uClibc-alpine-2ea44632aac286a927069a1fb1f979db23c0b3c4.tar.xz |
sparc32 nptl functional
* pulled updated asm and headers from glibc for sparc32
* probably no cancellation support yet
* no shared TLS relocs yet, since ldso is hosed on sparc still
note: didn't use TARGET_SUBARCH method of includes since that would cause
other parts of libc to fail currently. Will need to be fixed later.
Diffstat (limited to 'libpthread/nptl/sysdeps/sparc/pthreaddef.h')
-rw-r--r-- | libpthread/nptl/sysdeps/sparc/pthreaddef.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpthread/nptl/sysdeps/sparc/pthreaddef.h b/libpthread/nptl/sysdeps/sparc/pthreaddef.h new file mode 100644 index 000000000..bcc6ed10a --- /dev/null +++ b/libpthread/nptl/sysdeps/sparc/pthreaddef.h @@ -0,0 +1,6 @@ +#if defined(__arch64__) +#include "sparc64/pthreaddef.h" +#else +#include "sparc32/pthreaddef.h" +#endif + |