1. 07 9月, 2012 9 次提交
    • R
      provide loff_t for splice syscall · c4ea0e3f
      Rich Felker 提交于
      so far, this is the only actual use of loff_t i've found. some
      software, including glib, assumes loff_t must exist if splice exists;
      this is a reasonable assumption since the official prototype for
      splice uses loff_t, as it always works with 64-bit offsets regardless
      of the selected libc off_t size. i'm using #define for now rather than
      a typedef to make it easy to define in other headers if necessary
      (like the LFS64 ugliness), but it may be necessary to add it to
      alltypes.h eventually if other functions end up needing it.
      c4ea0e3f
    • R
      further use of _Noreturn, for non-plain-C functions · 0c05bd3a
      Rich Felker 提交于
      note that POSIX does not specify these functions as _Noreturn, because
      POSIX is aligned with C99, not the new C11 standard. when POSIX is
      eventually updated to C11, it will almost surely give these functions
      the _Noreturn attribute. for now, the actual _Noreturn keyword is not
      used anyway when compiling with a c99 compiler, which is what POSIX
      requires; the GCC __attribute__ is used instead if it's available,
      however.
      
      in a few places, I've added infinite for loops at the end of _Noreturn
      functions to silence compiler warnings. presumably
      __buildin_unreachable could achieve the same thing, but it would only
      work on newer GCCs and would not be portable. the loops should have
      near-zero code size cost anyway.
      
      like the previous _Noreturn commit, this one is based on patches
      contributed by philomath.
      0c05bd3a
    • R
      45305957
    • R
      c8ea9857
    • R
      ac5d0856
    • R
      use restrict everywhere it's required by c99 and/or posix 2008 · 400c5e5c
      Rich Felker 提交于
      to deal with the fact that the public headers may be used with pre-c99
      compilers, __restrict is used in place of restrict, and defined
      appropriately for any supported compiler. we also avoid the form
      [restrict] since older versions of gcc rejected it due to a bug in the
      original c99 standard, and instead use the form *restrict.
      400c5e5c
    • R
      remove dependency of wmemmove on wmemcpy direction · bac03cdd
      Rich Felker 提交于
      unlike the memmove commit, this one should be fine to leave in place.
      wmemmove is not performance-critical, and even if it were, it's
      already copying whole 32-bit words at a time instead of bytes.
      bac03cdd
    • R
      remove dependency of memmove on memcpy direction · 594318fd
      Rich Felker 提交于
      this commit introduces a performance regression in many uses of
      memmove, which will need to be addressed before the next release. i'm
      making it as a temporary measure so that the restrict patch can be
      committed without invoking undefined behavior when memmove calls
      memcpy with overlapping regions.
      594318fd
    • R
      fcfba995
  2. 03 9月, 2012 1 次提交
    • R
      avoid "inline" in public headers for strict c89 compatibility · fb247faf
      Rich Felker 提交于
      while musl itself requires a c99 compiler, some applications insist on
      being compiled with c89 compilers, and use of "inline" in the headers
      was breaking them. much of this had been avoided already by just
      skipping the inline keyword in pre-c99 compilers or modes, but this
      new unified solution is cleaner and may/should result in better code
      generation in the default gcc configuration.
      fb247faf
  3. 01 9月, 2012 1 次提交
  4. 30 8月, 2012 4 次提交
  5. 29 8月, 2012 1 次提交
    • R
      get rid of eh_frame bloat · b439c051
      Rich Felker 提交于
      if needed for debugging, it will be output in the .debug_frame section
      instead, where it is not part of the loaded program and where the
      strip command is free to strip it.
      b439c051
  6. 27 8月, 2012 2 次提交
  7. 26 8月, 2012 7 次提交
  8. 25 8月, 2012 4 次提交
  9. 24 8月, 2012 1 次提交
  10. 20 8月, 2012 1 次提交
  11. 19 8月, 2012 1 次提交
    • R
      make dynamic linker report all failures before exiting · 04109502
      Rich Felker 提交于
      before, only the first library that failed to load or symbol that
      failed to resolve was reported, and then the dynamic linker
      immediately exited. when attempting to fix a library compatibility
      issue, this is about the worst possible behavior. now we print all
      errors as they occur and exit at the very end if errors were
      encountered.
      04109502
  12. 18 8月, 2012 7 次提交
    • R
      release notes for 0.9.4 · 53de960d
      Rich Felker 提交于
      53de960d
    • R
      add mips to supported arch list in INSTALL file · 3ae8b980
      Rich Felker 提交于
      3ae8b980
    • R
      crt1 must align stack pointer on mips · 259071c2
      Rich Felker 提交于
      it's naturally aligned when entered with the kernel argv array, but if
      ld.so has been invoked explicitly to run a program, the stack will not
      be aligned due to having thrown away argv[0].
      259071c2
    • R
      efe97514
    • R
      split up installation target · 07809363
      Rich Felker 提交于
      patch by Luca Barbato (lu_zero)
      07809363
    • R
      fix extremely rare but dangerous race condition in robust mutexes · da8d0fc4
      Rich Felker 提交于
      if new shared mappings of files/devices/shared memory can be made
      between the time a robust mutex is unlocked and its subsequent removal
      from the pending slot in the robustlist header, the kernel can
      inadvertently corrupt data in the newly-mapped pages when the process
      terminates. i am fixing the bug by using the same global vm lock
      mechanism that was used to fix the race condition with unmapping
      barriers after pthread_barrier_wait returns.
      da8d0fc4
    • R
      fix float parsing logic for long decimal expansions · 11458e5b
      Rich Felker 提交于
      this affects at least the case of very long inputs, but may also
      affect shorter inputs that become long due to growth while upscaling.
      basically, the logic for the circular buffer indices of the initial
      base-10^9 digit and the slot one past the final digit, and for
      simplicity of the loop logic, assumes an invariant that they're not
      equal. the upscale loop, which can increase the length of the
      base-10^9 representation, attempted to preserve this invariant, but
      was actually only ensuring that the end index did not loop around past
      the start index, not that the two never become equal.
      
      the main (only?) effect of this bug was that subsequent logic treats
      the excessively long number as having no digits, leading to junk
      results.
      11458e5b
  13. 16 8月, 2012 1 次提交