summaryrefslogtreecommitdiffstats
path: root/libc/misc/internals
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove all non-constant libc_hidden_data_def(), it is too unreliable, sorry, ↵Peter S. Mazinger2006-03-101-11/+3
| | | | most of global data relocations are back
* Add UCLIBC_HAS_SSP_COMPAT option guarding gcc-3.x ssp supportPeter S. Mazinger2006-03-071-3/+10
|
* tweak the idea between having a MMU and actually using itMike Frysinger2006-02-181-5/+5
|
* touchup whitespaceMike Frysinger2006-02-171-11/+10
|
* DOMULTI may be used for libc, the excluded files need work, ↵Peter S. Mazinger2006-02-151-0/+2
| | | | linuxthreads[_db] as well, don't try on slow box
* after much deliberation, may i present Joseph S. Myers patch to add support ↵Mike Frysinger2006-02-141-0/+55
| | | | | | | | for .init and .fini array processing for the gory details, see the mailing list: http://www.uclibc.org/lists/uclibc/2006-January/014079.html http://www.uclibc.org/lists/uclibc/2006-February/014285.html
* libc-{a,so,multi}-y replaced by libc-y covering common objects both in ↵Peter S. Mazinger2006-02-131-14/+11
| | | | libc.a/libc.so, the diffs go into libc-static-y/libc-shared-y exclusively, add IMA to libc, don't use any MSRC anymore
* environ is GNU extensionPeter S. Mazinger2006-02-131-0/+2
|
* even the hidden version of the weaks in libc (as strong in libpthread) have ↵Peter S. Mazinger2006-02-022-2/+2
| | | | to be weaks
* Make it build w/ HAVE_SHARED disabled and SSP enabledPeter S. Mazinger2006-02-011-6/+13
|
* global data uses libc_hidden_data_def, convert all -I hope- and add some newPeter S. Mazinger2006-02-011-2/+2
|
* add comment to know why it's weakPeter S. Mazinger2006-01-311-0/+1
|
* change strong to weak_alias, arm fails, thx Khem RajPeter S. Mazinger2006-01-311-1/+1
|
* Do not build *64 and llseek, correct some failure when LFS is disabledPeter S. Mazinger2006-01-271-0/+2
|
* Some warnings go awayPeter S. Mazinger2006-01-271-1/+2
|
* Some more prototypes, enable missing-prototypes/declarations warnings for nowPeter S. Mazinger2006-01-261-2/+4
|
* Guard hidden prototypes accordinglyPeter S. Mazinger2006-01-231-2/+7
|
* Use __typeof instead of adding full prototypesPeter S. Mazinger2006-01-211-2/+2
|
* Correct a typoPeter S. Mazinger2006-01-161-0/+2
|
* Last relocs jump and global data, (even locales) that I could remove are ↵Peter S. Mazinger2006-01-164-4/+15
| | | | gone from libc. The remaining are left as exercise for others ;-)
* some global data relocs gonePeter S. Mazinger2006-01-161-1/+2
|
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-141-2/+4
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-142-35/+53
| | | | missing headers, other jump relocs removed
* create & use an internal alias to __uClibc_init()Mike Frysinger2006-01-081-1/+2
|
* create a hidden internal pagesize symbol for libc usageMike Frysinger2006-01-081-2/+4
|
* touchup code a bit and shrink it by a few bytesMike Frysinger2006-01-081-34/+31
|
* tweak __progname handling some more since some [bad] apps actually try and ↵Mike Frysinger2006-01-041-15/+15
| | | | use it
* tweak what is likely() in the argv[0] parsingMike Frysinger2006-01-031-2/+2
|
* add optional support for program_invocation_name/program_invocation_short_nameMike Frysinger2006-01-031-1/+19
|
* we dont need to loop calling abort() because abort() already loops for usMike Frysinger2006-01-031-2/+0
|
* fix previous commit so that __uClibc_init() is run for non-mmu cases again ↵Mike Frysinger2006-01-031-1/+3
| | | | as report by Thomas in Bug 618
* Use attribute_noreturnPeter S. Mazinger2006-01-021-1/+1
|
* Remove -unhonoured- commentPeter S. Mazinger2006-01-021-2/+0
|
* typecast away signed/unsigned warningsMike Frysinger2005-12-281-2/+2
|
* Remove all trailing ; after *_alias and change 2 to use weak_alias instead ↵Peter S. Mazinger2005-12-162-3/+3
| | | | of __attribute__ ...
* Convert usersPeter S. Mazinger2005-12-161-2/+2
|
* Hide _stdio_init/term, sorry, one change went mistakenly into the earlier commitPeter S. Mazinger2005-12-141-1/+1
|
* Convert all users of earlier hiddensPeter S. Mazinger2005-12-131-3/+1
|
* Convert internal users of chmod/*stat*, minimize change for __strsepPeter S. Mazinger2005-12-132-3/+3
|
* macro away the last parameter since we dont actually utilize it (saves a few ↵Mike Frysinger2005-12-102-7/+11
| | | | bytes) and fix signed warnings
* Implement hidden poll, switch user to hidden *printf/*scanf/pollPeter S. Mazinger2005-12-091-1/+1
|
* Use internal versionsPeter S. Mazinger2005-12-081-0/+2
|
* More hiding, 300 leftPeter S. Mazinger2005-12-041-0/+2
|
* More hiding, including __mempcpyPeter S. Mazinger2005-12-031-1/+1
|
* Hide mostly used functionsPeter S. Mazinger2005-12-012-13/+15
|
* Paul Brook writes:Mike Frysinger2005-11-291-0/+2
| | | | | | The functions __check_one_fd and __check_suid in libc/misc/internals/__uClibc_main.c are only used used when __ARCH_HAS_MMU__. The patch below surrounds them with the appropriate #ifdef.
* Hiding againPeter S. Mazinger2005-11-291-0/+3
|
* 100 JUMP relocs less (remaining 431) by hiding internally used onesPeter S. Mazinger2005-11-262-2/+2
|
* Some more hidden internalsPeter S. Mazinger2005-11-262-2/+2
|
* Forgotten to commitPeter S. Mazinger2005-11-221-9/+1
|