1. 19 5月, 2014 1 次提交
    • R
      rework sysconf table to treat zero entries as invalid · ff78355b
      Rich Felker 提交于
      based on patch by Timo Teräs. previously, the value zero was used as a
      literal zero, meaning that all invalid sysconf "names", which should
      result in sysconf returning -1, had to be explicitly listed. (in
      addition, it was not possible for sysconf to set errno to EINVAL, as
      there was no distinction between -1 as an error and -1 as a valid
      result.)
      
      now, the value 0 is used for invalid/undefined slots in the table and
      a new switch table entry is used for returning literal zeros.
      
      in addition, an off-by-one error in checking against the table size is
      fixed.
      ff78355b
  2. 16 4月, 2014 3 次提交
  3. 20 9月, 2013 1 次提交
  4. 15 9月, 2013 2 次提交
    • S
      support configurable page size on mips, powerpc and microblaze · b20760c0
      Szabolcs Nagy 提交于
      PAGE_SIZE was hardcoded to 4096, which is historically what most
      systems use, but on several archs it is a kernel config parameter,
      user space can only know it at execution time from the aux vector.
      
      PAGE_SIZE and PAGESIZE are not defined on archs where page size is
      a runtime parameter, applications should use sysconf(_SC_PAGE_SIZE)
      to query it. Internally libc code defines PAGE_SIZE to libc.page_size,
      which is set to aux[AT_PAGESZ] in __init_libc and early in __dynlink
      as well. (Note that libc.page_size can be accessed without GOT, ie.
      before relocations are done)
      
      Some fpathconf settings are hardcoded to 4096, these should be actually
      queried from the filesystem using statfs.
      b20760c0
    • R
      fix overflow in sysconf for _SC_MQ_PRIO_MAX · 7a34dd34
      Rich Felker 提交于
      the value of MQ_PRIO_MAX does not fit, so it needs to use OFLOW.
      7a34dd34
  5. 27 7月, 2013 3 次提交
  6. 27 6月, 2013 1 次提交
  7. 12 11月, 2012 1 次提交
  8. 13 5月, 2012 1 次提交
  9. 21 4月, 2012 1 次提交
  10. 22 3月, 2012 1 次提交
  11. 03 10月, 2011 1 次提交
  12. 08 6月, 2011 1 次提交
  13. 09 4月, 2011 2 次提交
  14. 11 3月, 2011 1 次提交
    • R
      fix sem_open and sem_close to obey posix semantics · 81af5036
      Rich Felker 提交于
      multiple opens of the same named semaphore must return the same
      pointer, and only the last close can unmap it. thus the ugly global
      state keeping track of mappings. the maximum number of distinct named
      semaphores that can be opened is limited sufficiently small that the
      linear searches take trivial time, especially compared to the syscall
      overhead of these functions.
      81af5036
  15. 12 2月, 2011 1 次提交