Age | Commit message (Collapse) | Author |
|
from string.h
|
|
Fixes undefined references to __fputc_unlocked when calling fputc().
|
|
|
|
When building an arm-uclinux toolchain withthreading disabled I get:
libc/stdio/getchar.c:26: error: 'getchar' aliased to undefined
symbol 'getchar_unlocked'
It looks like it's missing libc_hidden_def(getchar_unlocked). Patch below
fixes this.
|
|
|
|
|
|
|
|
CFLAGS/LDFLAGS/CPPFLAGS
|
|
|
|
|
|
|
|
fix compilation if PUTC_MACRO and/or GETC_MACRO is turned off
|
|
|
|
|
|
|
|
during initial port
|
|
|
|
s/dprintf(2/fprintf(stderr/g
|
|
|
|
|
|
may need to update their paths slightly
|
|
does not easily lend itself to becoming complete pthread cancelation
safe without first investing in some deep and serious thought...
The other malloc implementations are pthread cancelation safe, and
this one is mostly used for uClinux, where the lack is at least less
likely to be a common problem.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
libraries
|
|
is really really and we mean it this time, for uClibc only
|
|
|
|
applications stop using _syscall#() and use syscall() instead. Cleanup
internal handling of syscall includes to use the correct header file.
|
|
are NOT suitable for user-space. The libc ones are the ones that
application code must use. If a problem is found with the libc
ones, then the libc syscall macros should be fixed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
though I still need to silence the warnings about _pthread_cleanup_push_defer
|
|
|
|
|