aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-02-15Remove bounded-pointers build system support.Joseph Myers16-95/+62
2013-02-15Remove miscellaneous bounded-pointers relics in C code.Joseph Myers9-16/+28
2013-02-14hppa: Remove unused lll_unlock_wake_cb.Carlos O'Donell3-14/+7
There hasn't been a use for lll_unlock_wake_cb since it was removed globally in 2007-05-29. This patch removes the function from hppa's lowlevellock.[ch] implementation.
2013-02-14aarch64: Update libm-test-ulps.Marcus Shawcroft2-0/+368
2013-02-14Remove bp-sym.h and BP_SYM uses from C code.Joseph Myers27-99/+178
2013-02-14Remove redundant return keywordSiddhesh Poyarekar3-26/+22
2013-02-14Use __sqr instead of __mul wherever possibleSiddhesh Poyarekar4-4/+10
2013-02-14New __sqr function as a faster special case of __mulSiddhesh Poyarekar8-2/+309
2013-02-13Remove __ptrvalue, __bounded and __unbounded.Joseph Myers60-155/+234
2013-02-13Fix up ChangeLog.Roland McGrath1-3/+1
2013-02-13Install stdlib-bsearch.h headerOndrej Bilka2-1/+6
2013-02-13Call memcpy in generic mempcpyOndrej Bilka2-36/+6
2013-02-13Remove unnecessary factorial arraySiddhesh Poyarekar2-10/+5
kf is n! at the end of the loop, so storing the values is unnecessary.
2013-02-13Better exp polynomialSiddhesh Poyarekar2-23/+40
The lesser the __mul calls, the better it is for performance.
2013-02-13Optimized mp multiplicationSiddhesh Poyarekar2-8/+51
Don't bother multiplying zeroes since that only wastes cycles.
2013-02-13Clean up add_magnitudes and sub_magnitudesSiddhesh Poyarekar2-52/+66
2013-02-12Remove redunant "warning: " prefix from stub warnings.Roland McGrath2-2/+6
2013-02-12Fix buffer overrun in regexp matcherAndreas Schwab5-9/+68
2013-02-12Fix handling of collating symbols in regexpsAndreas Schwab5-48/+92
2013-02-12Fix typo, improve comment, remove superfluous #undefs, add missing #undef.Tom de Vries2-5/+15
2013-02-11Fix log entry in last change.Roland McGrath1-2/+2
2013-02-11Add inline bsearch expansion.Ondrej Bilka4-28/+56
2013-02-11Fix some errors in declarations in the manual.Roland McGrath20-88/+164
2013-02-11Remove dead CFLAGS lines from string/MakefileTom de Vries2-2/+5
2013-02-11Fix a typo in the mremap comment.Roland McGrath2-1/+5
2013-02-11Add CFI information for MIPS assembly sources.Joseph Myers20-34/+191
2013-02-11Fix typo in ChangeLog entry for commit 03759f47db62930f2dddf1c9733ef89b9d99e2daTom de Vries1-1/+1
2013-02-08Fix PF_LOCAL socket example sockaddr_un size calculation.Roland McGrath2-3/+7
2013-02-08m68k: update kernel-features.hAndreas Schwab2-0/+29
2013-02-08Remove CHECK_N and bp-checks.h.Joseph Myers46-183/+181
2013-02-08Remove dead variable in generic strcpy.Roland McGrath2-3/+2
2013-02-08Support sysdeps/.../include/ directories.Roland McGrath2-1/+13
2013-02-08Refactor code out of nscd's two main poll loops.Carlos O'Donell2-65/+93
We refactor the inotify file checking code and the database clearing code out of the main_loop_poll and mail_loop_epoll functions. We document some the related functions with appropriate comments.
2013-02-08Add more comments to _dl_load_cache_lookup().Carlos O'Donell2-2/+8
Calling _dl_load_cache_lookup will load the cache if not already. If loading the cache fails no more attempts will be made to load the cache.
2013-02-08BZ #15006: Updates NEWS and ChangeLog.Carlos O'Donell3-1/+3
2013-02-08ARM: Support loading unmarked objects from cache.Carlos O'Donell6-2/+31
ARM now supports loading unmarked objects from the dynamic loader cache. Unmarked objects can be used with the hard-float or soft-float ABI. We must support loading unmarked objects during the transition period from a binutils that does not mark objects to one that does mark them with the correct ELF flags. Signed-off-by: Carlos O'Donell <carlos@redhat.com>
2013-02-08Use ENTRY and END in more MIPS .S files.Joseph Myers15-49/+36
2013-02-08Remove CHECK_1 and CHECK_1_NULL_OK.Joseph Myers44-176/+179
2013-02-08Remove CHECK_BOUNDS_LOW and CHECK_BOUNDS_HIGH for C code.Joseph Myers3-17/+11
2013-02-07Remove lots of inline keywords.Roland McGrath21-39/+75
2013-02-05Move nss directory into sysdeps Subdirs.Roland McGrath4-4/+19
2013-02-05Replace an alloca use with a variable-length array.Roland McGrath2-3/+5
2013-02-05Fix aliases in stub lseek.Roland McGrath2-3/+7
2013-02-05Add missing includes to sysdeps/generic/malloc-sysdep.h.Roland McGrath2-0/+7
2013-02-05MIPS: Correct formatting of syscall wrapper `asm' specifiers.Maciej W. Rozycki4-120/+125
2013-02-05MIPS: Respect the legacy syscall restart convention.Maciej W. Rozycki5-88/+269
That convention requires the instruction immediately preceding SYSCALL to initialize $v0 with the syscall number. Then if a restart triggers, $v0 will have been clobbered by the syscall interrupted, and needs to be reinititalized. The kernel will decrement the PC by 4 before switching back to the user mode so that $v0 has been reloaded before SYSCALL is executed again. This implies the place $v0 is loaded from must be preserved across a syscall, e.g. an immediate, static register, stack slot, etc. The restriction was lifted with Linux 2.6.36 kernel release and no special requirements are placed around the SYSCALL instruction anymore, however we still support older kernel binaries.
2013-02-04getenv: Remove check for non-standard endianness.Carlos O'Donell2-4/+5
stdlib/getenv.c (getenv): Assume __BIG_ENDIAN in the else clause and remove check for non-standard endianness.
2013-02-04Add long-double sparc ULPs updates missing in previous commit.David S. Miller1-0/+36
2013-02-04Update sparc ULPs after Joseph's casin fixes.David S. Miller2-0/+130
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2013-02-04Remove CHECK_STRING, CHECK_STRING_NULL_OK and __ubp_memchr.Joseph Myers39-130/+143