1. 24 7月, 2011 5 次提交
  2. 22 7月, 2011 4 次提交
  3. 17 7月, 2011 2 次提交
  4. 15 7月, 2011 1 次提交
    • R
      fix various bugs in new integer parser framework · 47d027ee
      Rich Felker 提交于
      1. my interpretation of subject sequence definition was wrong. adjust
      parser to conform to the standard.
      
      2. some code for handling tail overflow case was missing (forgot to
      finish writing it).
      
      3. typo (= instead of ==) caused ERANGE to wrongly behave like EINVAL
      47d027ee
  5. 14 7月, 2011 2 次提交
    • R
      fix wcsto[iu]max with high characters · d3fd1925
      Rich Felker 提交于
      stopping without letting the parser see a stop character prevented
      getting a result. so treat all high chars as the null character and
      pass them into the parser.
      
      also eliminated ugly tmp var using compound literals.
      d3fd1925
    • R
      new restartable integer parsing framework. · ecc9c5fc
      Rich Felker 提交于
      this fixes a number of bugs in integer parsing due to lazy haphazard
      wrapping, as well as some misinterpretations of the standard. the new
      parser is able to work character-at-a-time or on whole strings, making
      it easy to support the wide functions without unbounded space for
      conversion. it will also be possible to update scanf to use the new
      parser.
      ecc9c5fc
  6. 13 7月, 2011 1 次提交
  7. 12 7月, 2011 3 次提交
  8. 10 7月, 2011 1 次提交
  9. 04 7月, 2011 5 次提交
  10. 02 7月, 2011 1 次提交
  11. 01 7月, 2011 7 次提交
  12. 30 6月, 2011 5 次提交
  13. 29 6月, 2011 3 次提交
    • R
      work around linux bug in mprotect · af3d5405
      Rich Felker 提交于
      per POSIX: The mprotect() function shall change the access protections
      to be that specified by prot for those whole pages containing any part
      of the address space of the process starting at address addr and
      continuing for len bytes.
      
      on the other hand, linux mprotect fails with EINVAL if the base
      address and/or length is not page-aligned, so we have to align them
      before making the syscall.
      af3d5405
    • R
      textrel support, cheap and ugly · 9f17413c
      Rich Felker 提交于
      9f17413c
    • R
      release notes for 0.7.11 · 2cee4576
      Rich Felker 提交于
      2cee4576