summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove old commentPeter S. Mazinger2006-01-211-2/+0
|
* Another __sigprocmaskPeter S. Mazinger2006-01-211-3/+1
|
* Remove other __sigprocmask occurences, even if unused, remove unsed filePeter S. Mazinger2006-01-213-59/+4
|
* Correct sigprocmask undefined for sh and remove the useless __sigprocmask weakPeter S. Mazinger2006-01-212-6/+3
|
* Convert l*seek too to use __typeofPeter S. Mazinger2006-01-212-2/+2
|
* Use __typeof instead of adding full prototypesPeter S. Mazinger2006-01-215-7/+7
|
* need prototype to fix sigaction warningsMike Frysinger2006-01-201-0/+3
|
* grab syscall macros from the kernelMike Frysinger2006-01-201-7/+185
|
* .set doesnt work on alphaMike Frysinger2006-01-201-1/+1
|
* fix building on alphaMike Frysinger2006-01-201-0/+15
|
* need sys/syscall.h for __NR_fork defineMike Frysinger2006-01-201-0/+1
|
* fix building on alphaMike Frysinger2006-01-201-6/+7
|
* need unistd.h for brk prototypeMike Frysinger2006-01-201-0/+1
|
* fix building/warnings on 64bit archesMike Frysinger2006-01-201-2/+6
|
* fix warning when sizeof uchar_t is 8 bitsMike Frysinger2006-01-201-0/+4
|
* disable deprecated warnings for some filesMike Frysinger2006-01-207-1/+7
|
* grab some macros for internal ldso usage and fix ↵Mike Frysinger2006-01-201-1/+26
| | | | strong_alias/hidden_strong_alias when .set support is disabled
* Correct comments, thx vapierPeter S. Mazinger2006-01-201-1/+1
|
* Split out libc-symbols.h from libc-internal.h, use it directly in CFLAGS. ↵Peter S. Mazinger2006-01-203-631/+661
| | | | Moved weak[_const]_function into proper place (if we have weak support), else noop. Modified comment about changes to glibc. Moved -D_LIBC from CFLAGS to libc-symbols.h. I am not sure about unlikely/likely/__cast
* didnt mean to commit the FENV option just yetMike Frysinger2006-01-201-17/+0
|
* Add -D_GNU_SOURCE to CFLAGS, else openpty picks the XOPEN variant of fd_setPeter S. Mazinger2006-01-202-2/+1
|
* Correct wordexp, I have hidden for now __libc_arg[c,v], there is no other ↵Peter S. Mazinger2006-01-202-17/+22
| | | | use within uClibc, depends on fnmatch as well
* Correction if UNIX98PTY_ONLY is not enabledPeter S. Mazinger2006-01-202-5/+8
|
* Use libm_ARCH_DIR and cleanup all possible archsPeter S. Mazinger2006-01-201-2/+2
|
* move some generic arch rules up a level to remove duplicationMike Frysinger2006-01-202-9/+4
|
* s/TARGET_ARCH_FEATURES/FORCE_OPTIONS_FOR_ARCH/ to fix sed breakage as ↵Mike Frysinger2006-01-2022-21/+38
| | | | pointed out by Joseph S. Myers
* update copyright yearsMike Frysinger2006-01-202-2/+2
|
* move the sh64 code out of the sh headerMike Frysinger2006-01-202-5/+2
|
* fix breakage from HAVE_ELF removal and standardize all the arch config filesMike Frysinger2006-01-1921-64/+223
|
* no need for libm_DEFPeter S. Mazinger2006-01-191-2/+1
|
* Add multi to libintlPeter S. Mazinger2006-01-191-5/+14
|
* With one source or syscall only sources there is no use of IMAPeter S. Mazinger2006-01-193-6/+0
|
* Forgotten about the clean targetPeter S. Mazinger2006-01-192-2/+2
|
* Add multi support to linuxthread_dbPeter S. Mazinger2006-01-192-6/+22
|
* Correct strip display in multi modePeter S. Mazinger2006-01-191-1/+5
|
* Add multi support to libm, remove lib*-multi-y, unneededPeter S. Mazinger2006-01-194-27/+24
|
* Remove HAVE_ELFPeter S. Mazinger2006-01-1936-178/+39
|
* Get rid of *_SYMBOL_PREFIXPeter S. Mazinger2006-01-1910-17/+5
|
* Import some need bits from glibc to libc-internal.h, hidden_weak_alias gone, ↵Peter S. Mazinger2006-01-191-40/+147
| | | | hidden_strong_alias adapted, HAVE_ELF defined always, __SYMBOL_PREFIX removed
* Change to sane defaultsPeter S. Mazinger2006-01-1922-110/+222
|
* Remove MMAP_HAS_6_ARGSPeter S. Mazinger2006-01-191-2/+0
|
* would help if i used the right variable name ...Mike Frysinger2006-01-191-1/+1
|
* Frank Mehnert writes:Mike Frysinger2006-01-191-0/+1
| | | | | | | | | | | | | | in ldso/ldso.c, function _dl_get_ready_to_run, the variable app_tpnt_tmp is not initialized. The function _dl_parse_dynamic_info() initializes some of their members but not all. For example, if the binary does _not_ contain a DT_TEXTREL record, it is possible that the condition if (app_tpnt->dynamic_info[DT_TEXTREL]) is nevertheless true and we therefore enter the following code path (ldso.c:270). My suggestion is to add _dl_memset(&app_tpnt_rel, 0, sizeof(app_tpnt_rel)); just behind the variable declarations of _dl_get_ready_to_run().
* update sparc code using x86_64 as a templateMike Frysinger2006-01-191-204/+302
|
* first pass at updating sparc ldso with code from glibcMike Frysinger2006-01-191-29/+43
|
* update syscall macros so both ldso and libc can use themMike Frysinger2006-01-192-305/+101
|
* move a bunch of arch-specific checks out of common files and into an arch ↵Mike Frysinger2006-01-1934-52/+773
| | | | specific header file to make porting/updates a lot easier
* note a few more places where glibc stores their stuffMike Frysinger2006-01-191-0/+2
|
* Correct unimportant typoPeter S. Mazinger2006-01-191-1/+1
|
* Some minor updates. Looked pretty good as-is.Eric Andersen2006-01-191-11/+15
|