summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixup sysconf to report the correct answer when UCLIBC_DYNAMIC_ATEXITEric Andersen2002-11-271-1/+6
| | | | is enabled.
* Ok... here's the summary:Manuel Novoa III2002-11-221-0/+54
| | | | | | | | | | | | | | Hopefully locale support will build when cross compiling now. Collation is still not supported, but that's what I'm currently working on. In the next couple of days, I'll probably put up a couple of files for download that will save people the trouble of generating all the glibc locales. Added *wprintf functions, although they currently don't support floating point. That will be fixed when I rewrite _dtostr... or possibly before. Added the wcsto{inttype} functions. Added iconv() and a mini iconv utility. The require locale support and only provide for conversions involving the various unicode encodings { UCS-4*, UCS-2*, UTF-32*, UTF-16*, UTF-8 }, the 8-bit codesets built with the locale data, and the internal WCHAR_T.
* Patch from Aidan Van Dyk to make _toupper and _tolowerEric Andersen2002-11-201-2/+2
| | | | work properly, reverting my wrong reading of SuSv3
* Aidan Van Dyk noticed that _toupper and _tolower were misbehaving.Eric Andersen2002-11-191-3/+3
| | | | This corrects them, per SuSv3.
* cut-n-paste typoEric Andersen2002-11-191-1/+1
|
* Update to sync up with glibc 2.3Eric Andersen2002-11-191-9/+16
|
* Implement sendfile64Eric Andersen2002-11-141-8/+23
| | | | -Erik
* Make sure we have __linux__ definedEric Andersen2002-11-091-0/+3
|
* Disble unimplemented function prototypesEric Andersen2002-11-081-0/+3
|
* Ok, this commit is _huge_ and its gonna change the world. I'veEric Andersen2002-10-312-6/+6
| | | | | | | | | | | | | | | been working on a new config system on and off for about 6 months now, but I've never been fully satisfied. Well, I'm finally am happy with the new config system, so here it is. This completely removes the old uClibc configuration system, and replaces it with an entirely new system based on LinuxKernelConf, from http://www.xs4all.nl/~zippel/lc/ As it turns out, Linus has just merged LinuxKernelConf into Linux 2.5.45, so it looks like I made the right choice. I have thus far updated only x86. I'll be updating the other architectures shortly. -Erik
* It turns out that __thread is now a gcc keyword. We used __thread inEric Andersen2002-10-131-2/+2
| | | | | | | | a few spots in our header files. In this change I do a s/__thread/__thread_id/ so we no longer conflict with newer CVS versions of gcc (such as the patched up gcc 3.2 included with RedHat 3.0). -Erik
* Add gnu obstack support. I still need to implement the obstack_printfManuel Novoa III2002-09-192-1/+606
| | | | and obstack_vprintf, but at least now the reiserfsprogs build.
* Hide my personal #warning reminders. Add __wcschrnul, rename strchrnulManuel Novoa III2002-09-191-4/+2
| | | | to __strchrnul, and add weak aliases for them.
* Added function 'get_current_dir_name' for Linux Test Project. Tested and"Steven J. Hill"2002-09-041-3/+0
| | | | works identically to function in glibc.
* Obligatory forgotten file... sys_errlist garbage.Manuel Novoa III2002-08-271-0/+12
|
* Make this as glibc-like as possible while avoiding the fileutilsManuel Novoa III2002-08-271-1/+3
| | | | problem. glibc hides the DT_* enum values unless __USE_BSD is defined.
* Move the _DIRENT_HAVE_D_TYPE test to avoid breaking fileutilsEric Andersen2002-08-271-1/+1
| | | | -Erik
* No need to hide this stuff when _DIRENT_HAVE_D_TYPE is notEric Andersen2002-08-271-1/+1
| | | | | | defined... Nothing too sacred in there and it can be used for other things... -Erik
* sparc, alpha, and mips have different errno values than the otherManuel Novoa III2002-08-261-12/+0
| | | | | | | supported platforms. Adjust _susv3_strerror_r function to deal with this. Also fix an error in strerror() wrt invalid errnos. NOTE: sys_errlist and sys_nerr are no longer supported!!!
* Kill the HAS_LONG_LONG option. It really did not make a lot ofEric Andersen2002-08-251-16/+0
| | | | | | sense to exclude it, gcc always supports long long, and we never fully excluded long long anyways (off64_t for example). -Erik
* Unlike glibc, uClibc doesn't always support the d_type field ofManuel Novoa III2002-08-201-1/+1
| | | | | struct dirent. So, disable the d_type support macros when d_type isn't available. This fixes a build problem file fileutils-4.1.
* Eliminate wrapping of struct stat and use the kernel versionEric Andersen2002-08-191-114/+0
| | | | | | directly. Eliminate all the attendant baggage. Fix internal types to match kernel types more closely. -Erik
* Fixup struct _res handling so apps using struct _res can actuallyEric Andersen2002-08-191-3/+2
| | | | | compile ("worst standard ever!") -Erik
* Disable macro implementations. Somehow I missed the following from theManuel Novoa III2002-08-161-1/+4
| | | | | | | | | | | | | | | ANSI/ISO C99 std... A library macro that masks a function declaration expands to an expression that evaluates each of its arguments once (and only once). ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Arguments that have side effects evaluate the same way whether the expression executes the macro expansion or calls the function. Macros for the functions getc and putc are explicit exceptions to this rule. Their stream arguments can be evaluated more than once. Avoid argument expressions that have side effects with these macros. This will be reworked before the next release. And yes, I feel stupid.
* Remove thread-specific stuff entirely.Miles Bader2002-08-161-16/+5
|
* (_res): Define as a macro if __UCLIBC_HAS_THREADS__ is defined,Miles Bader2002-08-161-3/+9
| | | | regardless of _LIBC.
* (h_errno): Only define as a macro if __UCLIBC_HAS_THREADS__ is defined.Miles Bader2002-08-161-12/+3
| | | | | (__set_h_errno): Just assign to `h_errno' (which will be expanded to the thread-friendly version when appropriate).
* Replace all instances of _LIBC_REENTRANT with __UCLIBC_HAS_THREADS__Eric Andersen2002-08-162-4/+4
| | | | -Erik
* Patch from Jarkko to fix drand48 to not use long long whenEric Andersen2002-08-151-0/+2
| | | | long long support is disabled in the uClibc Config.
* Add missing include/thread_db.h file, as reported by Simon PosnjakEric Andersen2002-08-141-0/+439
| | | | -Erik
* Fix some more warnings for non-thread-enabled compiles.David McCullough2002-08-091-3/+2
|
* Fix a number of compile time warnings so that uClibc will build with -Werror ↵David McCullough2002-08-091-2/+2
| | | | | | using a 3.0.4 version of the sh-linux-gcc compiler.
* Make pump happy. Add in this header.Eric Andersen2002-08-081-0/+64
| | | | -Erik
* Cleanup crypt and remove the crypt_r stuff, since SuSv3Eric Andersen2002-08-071-29/+1
| | | | | (IEEE Std 1003.1-2001) states that crypt need not be reentrant. -Erik
* Message catalog support for internationalization is not currentlyEric Andersen2002-08-071-0/+18
| | | | | provided by uClibc, and here I have added macros to disable it. -Erik
* Enable getpt prototype.Manuel Novoa III2002-08-061-2/+3
|
* More i960 supportEric Andersen2002-07-311-0/+9
|
* Avoid errors in case some loon has explicitly includedEric Andersen2002-07-271-0/+2
| | | | | linux/kernel.h (even though doing so is very dumb). -Erik
* (__ASMNAME): Use C_SYMBOL_PREFIX.Miles Bader2002-07-241-3/+2
| | | | (__ASMNAME2): Macro removed.
* Rework syscall handling. Rewrite syscall handlers for x86 and ARM.Eric Andersen2002-07-221-8/+1
| | | | | | Prepare to kill the UNIFIED_SYSCALL option and instead have it be a per arch thing that is either enabled or not for that arch. -Erik
* Add missing stropts.hEric Andersen2002-07-101-0/+81
|
* Attempt to clean up the strerror_r situation.Manuel Novoa III2002-07-071-4/+23
|
* Update header for strlcat and strlcpy.Manuel Novoa III2002-07-051-0/+8
|
* Enable WCHAR support for C/POSIX stub locales.Manuel Novoa III2002-07-032-1/+27
| | | | | | Implemented unformatted wide i/o functions. (ungetwc still needs testing) Fix a few bugs in wchar.c. Modifications for bcc/elks support.
* fix this header so it behaves itselfEric Andersen2002-07-021-20/+2
| | | | -Erik
* Patch from Ronald Wahl <rwa@peppercon.com> -- kill references toEric Andersen2002-07-011-4/+4
| | | | | the obsolete PTHREAD_MUTEX_FAST_NP, and change the default mutex type to adaptive
* Several cleanups/fixes from Marshall M. Midden <m4@brecis.com>Eric Andersen2002-06-261-0/+2
|
* Per "Marshall M. Midden" <m4@brecis.com>, remove doubleEric Andersen2002-06-241-5/+4
| | | | define of _PATH_LOCALE.
* Update rpc headers. Add missing some headersEric Andersen2002-06-178-2/+426
| | | | -Erik
* Implement strerror_r. This is per SuSv3, not glibc which doesEric Andersen2002-06-171-1/+1
| | | | | something different. -Erik