diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:34:31 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-08-18 02:34:31 +0000 |
commit | 56977c02fd8c31ed4669245828f689512b21b0fc (patch) | |
tree | 0ceb81953abbea519e6c1dd98991102028b17b2d /libpthread/linuxthreads/sysdeps/pthread | |
parent | b97fedbd9e65f10d221ad0653392379be1a4ba3f (diff) | |
download | uClibc-alpine-56977c02fd8c31ed4669245828f689512b21b0fc.tar.bz2 uClibc-alpine-56977c02fd8c31ed4669245828f689512b21b0fc.tar.xz |
Merge from trunk.
Diffstat (limited to 'libpthread/linuxthreads/sysdeps/pthread')
-rw-r--r-- | libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h b/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h index 094c7fccf..f81c22945 100644 --- a/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h +++ b/libpthread/linuxthreads/sysdeps/pthread/uClibc-glue.h @@ -27,12 +27,19 @@ #define __close close #define __on_exit on_exit #define __libc_current_sigrtmin_private __libc_current_sigrtmin +#define __clone clone extern void *__libc_stack_end; extern int __cxa_atexit (void (*func) (void *), void *arg, void *d); #endif /* IS_IN_libpthread */ +#ifdef __UCLIBC_HAS_XLOCALE__ +# define __uselocale(x) uselocale(x) +#else +# define __uselocale(x) ((void)0) +#endif + /* Use a funky version in a probably vein attempt at preventing gdb * from dlopen()'ing glibc's libthread_db library... */ #define STRINGIFY(s) STRINGIFY2 (s) |