1. 04 5月, 2012 1 次提交
    • R
      add support for ugly *64 functions with _LARGEFILE64_SOURCE · 2dd8d5e1
      Rich Felker 提交于
      musl does not support legacy 32-bit-off_t whatsoever. off_t is always
      64 bit, and correct programs that use off_t and the standard functions
      will just work out of the box. (on glibc, they would require
      -D_FILE_OFFSET_BITS=64 to work.) however, some programs instead define
      _LARGEFILE64_SOURCE and use alternate versions of all the standard
      types and functions with "64" appended to their names.
      
      we do not want code to actually get linked against these functions
      (it's ugly and inconsistent), so macros are used instead of prototypes
      with weak aliases in the library itself. eventually the weak aliases
      may be added at the library level for the sake of using code that was
      originally built against glibc, but the macros will still be the
      desired solution in the headers.
      2dd8d5e1
  2. 23 4月, 2012 2 次提交
  3. 22 4月, 2012 1 次提交
  4. 19 4月, 2012 1 次提交
    • R
      legacy junk compatibility grab-bag · ba6a9e77
      Rich Felker 提交于
      - add the rest of the junk traditionally in sys/param.h
      - add prototypes for some nonstandard functions
      - add _GNU_SOURCE to their source files so the compiler can check proto
      ba6a9e77
  5. 18 2月, 2012 1 次提交
  6. 14 9月, 2011 1 次提交
  7. 12 8月, 2011 1 次提交
    • R
      implement forkall · 4054a135
      Rich Felker 提交于
      this is a "nonstandard" function that was "rejected" by POSIX, but
      nonetheless had its behavior documented in the POSIX rationale for
      fork. it's present on solaris and possibly some other systems, and
      duplicates the whole calling process, not just a single thread. glibc
      does not have this function. it should not be used in programs
      intending to be portable, but may be useful for testing,
      checkpointing, etc. and it's an interesting (and quite small) example
      of the usefulness of the __synccall framework originally written to
      work around deficiencies in linux's setuid syscall.
      4054a135
  8. 28 4月, 2011 1 次提交
  9. 13 4月, 2011 1 次提交
  10. 04 4月, 2011 2 次提交
  11. 02 4月, 2011 1 次提交
  12. 27 2月, 2011 1 次提交
  13. 19 2月, 2011 1 次提交
  14. 16 2月, 2011 1 次提交
  15. 12 2月, 2011 1 次提交