summaryrefslogtreecommitdiffstats
path: root/libc/misc/time
Commit message (Collapse)AuthorAgeFilesLines
* A couple of little cleanups I forgot to check in.Manuel Novoa III2002-08-031-1/+1
|
* Clean up CLK_TCK situation. clock() and sysconf() now use anManuel Novoa III2002-07-151-13/+18
| | | | | | 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.
* Enable WCHAR support for C/POSIX stub locales.Manuel Novoa III2002-07-031-4/+1
| | | | | | Implemented unformatted wide i/o functions. (ungetwc still needs testing) Fix a few bugs in wchar.c. Modifications for bcc/elks support.
* Add in thread locking for tzset() and associated data. Also, fix a bug soManuel Novoa III2002-06-181-5/+42
| | | | that localtime_r() calls tzset() to initialize/update timezone data.
* Commit the new time stuff, even though I haven't made it threadsafe yet.Manuel Novoa III2002-06-1721-2203/+1879
| | | | At least people can play with it. Also, fix a buglet in setenv.c.
* time() is implemented in syscalls.cEric Andersen2002-06-152-39/+1
| | | | -Erik
* Cleanup slightlyEric Andersen2002-05-231-8/+10
|
* Begin the process of reworking the time functions for properEric Andersen2002-05-1115-410/+432
| | | | | | time zone and locale support (in theory). More work is still needed. -Erik
* Add strptime, and commonize some locale stringsEric Andersen2002-03-155-20/+1010
| | | | -Erik
* OOps.Eric Andersen2002-02-051-1/+0
|
* Add in a weak for __adjtimeEric Andersen2002-02-021-0/+2
|
* Fix duplicate of timezoneEric Andersen2002-01-091-4/+0
|
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-191-0/+1
|
* A few symbols needed for testingEric Andersen2001-11-202-2/+9
|
* Update to accomodate the header file changesEric Andersen2001-09-275-2/+7
|
* Patch from Andrew Ip <aip@cwlinux.com> to add ftime,Eric Andersen2001-09-062-1/+37
| | | | allowing openssl to be built.
* Ok, this should finish off my massive ro-organization. The sourceEric Andersen2001-05-121-2/+1
| | | | | | | | | tree is less messy now (which helps), all libraries are placed into uClibc/lib when compiling, all libraries now use a consistant mechanism for being built, all libraries use a consistant naming scheme where the lib name includes the uClibc version number, which makes ldconfig happy and willing to work with us. -Erik
* Add missing time()Eric Andersen2001-04-182-1/+39
|
* Fix up more leftovers resultant from fixing _LIBCEric Andersen2001-04-061-2/+39
|
* Fix include/errno.h to not use kernel header, and instead use bits/errno.h.Eric Andersen2001-04-061-1/+1
| | | | | | | This required we use _LIBC instead of __LIBC__ to be consistent with glibc. This had some sideffects in sys/syscalls.h. While fixing things, I made everything use __set_errno() for (eventual) thread support. -Erik
* Fix from Jon Nelson for error in timezoneEric Andersen2001-03-201-1/+1
| | | | -Erik
* Add in the timezone global from time.h, from a patch byEric Andersen2001-03-191-0/+5
| | | | Jon Nelson <jnelson@boa.org>
* Remove times and all the foolishness surrounding it. There isEric Andersen2001-02-091-1/+1
| | | | | a syscall that does this, so use that. -Erik
* Reduced code size; fixed ANSI bug for day -- 5 not 05; mode days and mons const.Manuel Novoa III2001-01-281-28/+48
|
* Reduce dependancies -- don't use sysconf() internal to libc.Eric Andersen2001-01-151-7/+5
|
* Patch from James Graves <jgraves@deltamobile.com> to better handle m68k.Eric Andersen2001-01-121-6/+1
| | | | | | Also fixes 2 very important malloc bugs! Anyone using malloc (esp mmu-less) should update and recompile. -Erik
* A large update from Manuel Novoa III <mnovoa3@bellsouth.net>.Eric Andersen2001-01-111-2/+2
|
* Oops. left strftime.c in twice.Eric Andersen2001-01-021-1/+1
|
* Patch from James Graves <jgraves@deltamobile.com> to getEric Andersen2001-01-021-0/+6
| | | | | m68k started. Should be just sysdeps/linux/m68k left to hack at this point...
* Fix doc blunder.Eric Andersen2000-11-041-4/+4
|
* Make spelling of uClibc be consistant.Eric Andersen2000-11-041-1/+1
|
* More cleanups. Fix things so tinylogin compiles.Eric Andersen2000-11-043-1/+113
| | | | Fix a bug in getdelim -- patch from David Whedon <dwhedon@gordian.com>.
* More random fixes and additions.Eric Andersen2000-10-272-1/+400
|
* More reorg. A place for everything and everything in its place...Eric Andersen2000-10-233-1/+68
|
* Strip all object files of all non global symbols and .note andEric Andersen2000-10-201-1/+3
| | | | | .comment, saving a lot of space in the resultant binaries... -Erik
* Makefile updateEric Andersen2000-10-121-1/+1
|
* Finish reorganizing things. At least I think I've finished.Eric Andersen2000-10-111-1/+1
|
* Bug ugly formatting updateEric Andersen2000-10-0913-390/+407
|
* Dependancy updateEric Andersen2000-10-071-5/+8
|
* Fix all the makefiles. Clean up some warnings, cleanup some headers.Eric Andersen2000-10-041-10/+27
| | | | -Erik
* Rework all the string handling. Make const stuff be constified.Eric Andersen2000-07-061-1/+1
| | | | -Erik
* Many bugfixes, header cleanups, etc. Added abort and glob.Eric Andersen2000-07-051-1/+0
| | | | | It is getting closer... -Erik
* Finished porting stuff to x86 and supporting the Linux 2.2 kernels.Erik Andersen2000-05-151-1/+1
| | | | | It now compiles.... -Erik
* Some makefile updates to make it behave a bit better/consistently.Erik Andersen2000-05-141-7/+4
| | | | -Erik
* Patch from "D. Jeff Dionne / VE3DJF" <jeff@rt-control.com>0_9_1aErik Andersen2000-05-141-4/+4
| | | | | to allow uC-libc to compile under x86. -Erik
* Initial revision0_9_1Erik Andersen2000-05-1413-0/+634