Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-07-16 | Do not assume NULL termination on the ut_id field. Thanks | Eric Andersen | |
to mac12@po.cwru.edu for spotting this one. | |||
2002-07-15 | Clean up CLK_TCK situation. clock() and sysconf() now use an | Manuel Novoa III | |
arch-specific constant value defined in bits/uClibc_clk_tck.h. Default is 100 (common/bits) but alpha uses 1024 following glibc. Override per arch as necessary. | |||
2002-07-10 | Tobias Anderberg <tobias.anderberg@axis.com> noticed that | Eric Andersen | |
we were opening the socket() as SOCK_STREAM instead of using SOCK_DGRAM like we should have done. | |||
2002-07-05 | Add copyright message and remove dead code. | Manuel Novoa III | |
2002-07-03 | Enable WCHAR support for C/POSIX stub locales. | Manuel Novoa III | |
Implemented unformatted wide i/o functions. (ungetwc still needs testing) Fix a few bugs in wchar.c. Modifications for bcc/elks support. | |||
2002-07-02 | Oops. missed a spot | Eric Andersen | |
-Erik | |||
2002-07-02 | openlog could deadlock when called from vsyslog, so | Eric Andersen | |
allow recursive locking, -Erik | |||
2002-06-20 | Cleanup the function pointer comparisions | Eric Andersen | |
-Erik | |||
2002-06-18 | Add in thread locking for tzset() and associated data. Also, fix a bug so | Manuel Novoa III | |
that localtime_r() calls tzset() to initialize/update timezone data. | |||
2002-06-18 | Fix thread locking so it works | Eric Andersen | |
-Erik | |||
2002-06-18 | Fix locking. Kill | Eric Andersen | |
2002-06-18 | Some commentary | Eric Andersen | |
-Erik | |||
2002-06-17 | Shuffle the logic around a bit | Eric Andersen | |
-Erik | |||
2002-06-17 | Some cleanups so utmp/wtmp behaves. Fix potential use of | Eric Andersen | |
uninitialized memory. Prepare to reentrantify the utmp stuff. -Erik | |||
2002-06-17 | Ah kant spel mi name | Eric Andersen | |
2002-06-17 | Commit the new time stuff, even though I haven't made it threadsafe yet. | Manuel Novoa III | |
At least people can play with it. Also, fix a buglet in setenv.c. | |||
2002-06-15 | time() is implemented in syscalls.c | Eric Andersen | |
-Erik | |||
2002-06-08 | Added a version of nl_langinfo for the stub C/POSIX locale support. | Manuel Novoa III | |
2002-05-30 | Fixup totally broken locking code... No storage for the mutex, | Eric Andersen | |
wrong ifdef macro.. -Erik | |||
2002-05-30 | Cope with systems that don't glob all these together, but use | Eric Andersen | |
separate syscalls. -Erik | |||
2002-05-23 | Obligatory forgotten file during commit... | Manuel Novoa III | |
2002-05-23 | Multibyte and wide char conversion functions. Some work still to do, but | Manuel Novoa III | |
they're quite solid now and Erik needs them for the gcc port. Comments at the head of wchar.c. | |||
2002-05-23 | Cleanup slightly | Eric Andersen | |
2002-05-12 | Add a missing #include | Eric Andersen | |
2002-05-12 | Fix this one up so it works | Eric Andersen | |
2002-05-11 | Fixup for architectures that do not supply the ipc system | Eric Andersen | |
call, but implement the ipc functions as separate system calls. -Erik | |||
2002-05-11 | Oops. Stupid typo. | Eric Andersen | |
2002-05-11 | Begin the process of reworking the time functions for proper | Eric Andersen | |
time zone and locale support (in theory). More work is still needed. -Erik | |||
2002-05-11 | Implement readdir_r. Audit for proper thread safety and locking. | Eric Andersen | |
-Erik | |||
2002-05-07 | Fixup build a bit more | Eric Andersen | |
2002-05-06 | The obligatory forgotten files... | Manuel Novoa III | |
2002-05-06 | New locale support (in development). Supports LC_CTYPE, LC_NUMERIC, | Manuel Novoa III | |
LC_TIME, LC_MONETARY, and LC_MESSAGES for the SUSv3 items. Also, nl_langinfo() when real locale support is enabled. New implementation of ctype.h. New implementation of wctype.h. New implementation of most of the string functions (smaller). New implementation of the wcs/wmem functions. These are untested, but they're also just preprocessor-modified versions ot the corresponding str/mem functions. Tweaked qsort and new bsearch. Stuff still pending: stdlib.h and wchar.h mb<->wc functions. I actually have working versions of the stdlib ones, but the reentrant versions from wchar.h require some reworking. Basic replacement and translit support for wc->mb conversions. (groundwork laid). Simple-minded collate support such as was provided by the previous locale implementation. (mostly done -- 8-bit codesets only) Shared mmaping of the locale data and strerror message text. | |||
2002-04-17 | Patch from Martin Proulx to not do ELFish things when not ELF. | Eric Andersen | |
2002-04-17 | Patch from Martin Proulx to remove weak_aliases for non ELF compilers in | Eric Andersen | |
__uClibc_main for the _stdio_init and _stdio_term functions. Since weak_aliases are defined as hard aliases for non ELF compilers, these 2 symbols ended up to be multiply defined, as those two are defined in stdio.c. | |||
2002-04-09 | Revert Erik's changes... they were broken since there weren't enough | Manuel Novoa III | |
bits for the extra ISblank flag. Instead, hardwire isblank() to not depend on locale for now. At least it will work for space and tab in the immenent release. This will all be blown away for the next release anyway, as I should be committing my new stuff in the next day or two. | |||
2002-04-09 | Support ISblank properly | Eric Andersen | |
2002-04-09 | Avoid defining __USE_FILE_OFFSET64, since we do _NOT_ want | Eric Andersen | |
interfaces silently renamed under us or very bad things may happen... -Erik | |||
2002-04-09 | undefine __USE_FILE_OFFSET64, since we absolutely do _NOT_ want interfaces | Eric Andersen | |
silently renamed under us or very bad things will happen. In this case, statfs64() ended up recurively calling statfs64() instead of statfs().... -Erik | |||
2002-04-05 | Add a fun pointer to make apps happy | Eric Andersen | |
2002-04-03 | Richard June <rjune@bravegnuworld.com> noticed that pututline | Eric Andersen | |
was only writing the first sizeof-a-pointer bytes to the utmp file. oops. -Erik | |||
2002-04-03 | Richard June <rjune@bravegnuworld.com> noticed that setutent | Eric Andersen | |
was only opening utmp readonly. Oops. | |||
2002-04-03 | Doh! I forgot to commit this... | Eric Andersen | |
2002-04-01 | Remove function declartions from include/features.h, create | Eric Andersen | |
a separate header file for those, and fixup references. -Erik | |||
2002-04-01 | Patches from Yoshinori Sato <qzb04471@nifty.ne.jp> to fix h8300 | Eric Andersen | |
support for pthreads and update for the latest and greatest. | |||
2002-03-31 | Add glob64.c, and add support for glob64 when large file is enabled. | Eric Andersen | |
-Erik | |||
2002-03-31 | Rework __gen_tempname() to better match glibc, and add mkstemp64(), | Eric Andersen | |
which is needed for busybox ash when using largefile support. -Erik | |||
2002-03-25 | Patch from Steven J. Hill to disable __fsetlocking when | Eric Andersen | |
threads are disabled. Bug is my fault. oops. -Erik | |||
2002-03-21 | Support getttyent and friends so ncurses will compile | Eric Andersen | |
2002-03-15 | Add strptime, and commonize some locale strings | Eric Andersen | |
-Erik | |||
2002-03-15 | Add missing updwtmp() and fix broken makefile | Eric Andersen | |