1. 06 2月, 2014 1 次提交
    • R
      add nonstandard timespec/timeval conversion macros in sys/time.h · ad87c2ee
      Rich Felker 提交于
      these are poorly designed (illogical argument order) and even poorly
      implemented (brace issues) on glibc, but unfortunately some software
      is using them. we could consider removing them again in the future at
      some point if they're documented as deprecated, but for now the
      simplest thing to do is just to provide them under _GNU_SOURCE.
      ad87c2ee
  2. 09 1月, 2014 2 次提交
    • R
      fix namespace violation in sys/shm.h · 513136ef
      Rich Felker 提交于
      in fixing this, I've changed the logic from ugly #if/#else blocks
      inside the struct shm_info definition to a fixed struct definition and
      optional macros to rename the elements. this will be helpful if we
      need to move shm_info to a bits header in the future, as it will keep
      the feature test logic out of bits.
      513136ef
    • R
      fix remaining known namespace violations for netinet/in.h · acde0135
      Rich Felker 提交于
      the imr_, imsf_, ip6_, ip6m_, ipi_, ipi6_, SCM_, and SOL_ prefixes are
      not in the reserved namespace for this header. thus the constants and
      structures using them need to be protected under appropriate feature
      test macros.
      
      this also affects some headers which are permitted to include
      netinet/in.h, particularly netdb.h and arpa/inet.h.
      
      the SOL_ macros are moved to sys/socket.h where they are in the
      reserved namespace (SO*). they are still accessible via netinet/in.h
      since it includes sys/socket.h implicitly (which is permitted).
      
      the SCM_SRCRT macro is simply removed, since the definition used for
      it, IPV6_RXSRCRT is not defined anywhere. it could be re-added, this
      time in sys/socket.h, if the appropriate value can be determined;
      however, given that the erroneous definition was not caught, it is
      unlikely that any software actually attempts to use SCM_SRCRT.
      acde0135
  3. 07 1月, 2014 3 次提交
    • R
      fix signedness of pgoff argument to remap_file_pages · 74998fbe
      Rich Felker 提交于
      both the kernel and glibc agree that this argument is unsigned; the
      incorrect type ssize_t came from erroneous man pages.
      74998fbe
    • R
      remove sys/sysctl.h · 2c5e7560
      Rich Felker 提交于
      this functionality has essentially always been deprecated in linux,
      and was never supported by musl. the presence of the header was
      reported to cause some software to attempt to use the nonexistant
      function, so removing the header is the cleanest solution.
      2c5e7560
    • R
      fix incorrect type for wd argument of inotify_rm_watch · 27503373
      Rich Felker 提交于
      this was wrong since the original commit adding inotify, and I don't
      see any explanation for it. not even the man pages have it wrong. it
      was most likely a copy-and-paste error.
      27503373
  4. 03 1月, 2014 1 次提交
  5. 30 12月, 2013 1 次提交
    • T
      fix struct signalfd_siginfo · 7e10f209
      Timo Teräs 提交于
      ssi_ptr is really 64-bit in kernel, so fix that. assuming sizeof(void*)
      for it also caused incorrect padding for 32-bits, as the following
      64-bits are aligned to 64-bits (and the padding was not taken into
      account), so fix the padding as well. add addr_lsb field while there.
      7e10f209
  6. 21 12月, 2013 1 次提交
  7. 05 12月, 2013 2 次提交
  8. 24 11月, 2013 1 次提交
  9. 23 11月, 2013 1 次提交
  10. 09 11月, 2013 1 次提交
    • R
      adjust sys/wait.h not to produde errors in strict ISO C feature profile · f5980e33
      Rich Felker 提交于
      siginfo_t is not available from signal.h when the strict ISO C feature
      profile (e.g. passing -std=c99 to gcc without defining any other
      feature test macros) is used, but the type is needed to declare
      waitid. using sys/wait.h (or any POSIX headers) in strict ISO C mode
      is an application bug, but in the interest of compatibility, it's best
      to avoid producing gratuitous errors. the simplest fix I could find is
      suppressing the declaration of waitid (and also signal.h inclusion,
      since it's not needed for anything else) in this case, while still
      exposing everything else in sys/wait.h
      f5980e33
  11. 26 10月, 2013 1 次提交
    • R
      add legacy ftime function and sys/timeb.h · 4b15d9f4
      Rich Felker 提交于
      despite being marked legacy, this was specified by SUSv3 as part of
      the XSI option; only the most recent version of the standard dropped
      it. reportedly there's actual code using it.
      4b15d9f4
  12. 18 10月, 2013 1 次提交
  13. 16 9月, 2013 1 次提交
  14. 15 9月, 2013 2 次提交
  15. 22 8月, 2013 1 次提交
  16. 14 8月, 2013 1 次提交
  17. 11 8月, 2013 1 次提交
    • R
      fix definitions of WIFSTOPPED and WIFSIGNALED to support up to signal 127 · 41c63282
      Rich Felker 提交于
      mips has signal numbers up to 127 (formerly, up to 128, but the last
      one never worked right and caused kernel panic when used), so 127 in
      the "signal number" field of the wait status is insufficient for
      determining that the process was stopped. in addition, a nonzero value
      in the upper bits must be present, indicating the signal number which
      caused the process to be stopped.
      
      details on this issue can be seen in the email with message id
      CAAG0J9-d4BfEhbQovFqUAJ3QoOuXScrpsY1y95PrEPxA5DWedQ@mail.gmail.com on
      the linux-mips mailing list, archived at:
      http://www.linux-mips.org/archives/linux-mips/2013-06/msg00552.html
      and in the associated thread about fixing the mips kernel bug.
      
      commit 4a96b948687166da26a6c327e6c6733ad2336c5c fixed the
      corresponding issue in uClibc, but introduced a multiple-evaluation
      issue for the WIFSTOPPED macro.
      
      for the most part, none of these issues affected pure musl systems,
      since musl has up until now (incorrectly) defined SIGRTMAX as 64 on
      all archs, even mips. however, interpreting status of non-musl
      programs on mips may have caused problems. with this change, the full
      range of signal numbers can be made available on mips.
      41c63282
  18. 09 8月, 2013 2 次提交
  19. 31 7月, 2013 2 次提交
  20. 28 7月, 2013 1 次提交
  21. 25 7月, 2013 3 次提交
  22. 23 7月, 2013 1 次提交
    • R
      move register_t and u_int64_t (back) to alltypes · 009f1868
      Rich Felker 提交于
      during the header refactoring, I had moved u_int64_t out of alltypes
      under the assumption that we could just use long long everywhere.
      however, it seems some broken applications make inconsistent mixed use
      of u_int64_t and uint64_t, resulting in build errors when the
      underlying type differs.
      009f1868
  23. 22 7月, 2013 1 次提交
    • R
      refactor headers, especially alltypes.h, and improve C++ ABI compat · 9448b051
      Rich Felker 提交于
      the arch-specific bits/alltypes.h.sh has been replaced with a generic
      alltypes.h.in and minimal arch-specific bits/alltypes.h.in.
      
      this commit is intended to have no functional changes except:
      - exposing additional symbols that POSIX allows but does not require
      - changing the C++ name mangling for some types
      - fixing the signedness of blksize_t on powerpc (POSIX requires signed)
      - fixing the limit macros for sig_atomic_t on x86_64
      - making dev_t an unsigned type (ABI matching goal, and more logical)
      
      in addition, some types that were wrongly defined with long on 32-bit
      archs were changed to int, and vice versa; this change is
      non-functional except for the possibility of making pointer types
      mismatch, and only affects programs that were using them incorrectly,
      and only at build-time, not runtime.
      
      the following changes were made in the interest of moving
      non-arch-specific types out of the alltypes system and into the
      headers they're associated with, and also will tend to improve
      application compatibility:
      - netdb.h now includes netinet/in.h (for socklen_t and uint32_t)
      - netinet/in.h now includes sys/socket.h and inttypes.h
      - sys/resource.h now includes sys/time.h (for struct timeval)
      - sys/wait.h now includes signal.h (for siginfo_t)
      - langinfo.h now includes nl_types.h (for nl_item)
      
      for the types in stdint.h:
      - types which are of no interest to other headers were moved out of
        the alltypes system.
      - fast types for 8- and 64-bit are hard-coded (at least for now); only
        the 16- and 32-bit ones have reason to vary by arch.
      
      and the following types have been changed for C++ ABI purposes;
      - mbstate_t now has a struct tag, __mbstate_t
      - FILE's struct tag has been changed to _IO_FILE
      - DIR's struct tag has been changed to __dirstream
      - locale_t's struct tag has been changed to __locale_struct
      - pthread_t is defined as unsigned long in C++ mode only
      - fpos_t now has a struct tag, _G_fpos64_t
      - fsid_t's struct tag has been changed to __fsid_t
      - idtype_t has been made an enum type (also required by POSIX)
      - nl_catd has been changed from long to void *
      - siginfo_t's struct tag has been removed
      - sigset_t's has been given a struct tag, __sigset_t
      - stack_t has been given a struct tag, sigaltstack
      - suseconds_t has been changed to long on 32-bit archs
      - [u]intptr_t have been changed from long to int rank on 32-bit archs
      - dev_t has been made unsigned
      
      summary of tests that have been performed against these changes:
      - nsz's libc-test (diff -u before and after)
      - C++ ABI check symbol dump (diff -u before, after, glibc)
      - grepped for __NEED, made sure types needed are still in alltypes
      - built gcc 3.4.6
      9448b051
  24. 20 7月, 2013 1 次提交
    • R
      add UIO_MAXIOV macro in sys/uio.h · 41e2fd9d
      Rich Felker 提交于
      while there's no POSIX namespace provision for UIO_* in uio.h, this
      exact macro name is reserved in XBD 2.2.2. apparently some
      glibc-centric software expects it to exist, so let's provide it.
      41e2fd9d
  25. 06 7月, 2013 1 次提交
  26. 04 7月, 2013 1 次提交
  27. 30 6月, 2013 1 次提交
    • R
      fix shifts possibly larger than type in major() macro · 9b732fe5
      Rich Felker 提交于
      in theory this should not be an issue, since major() should only be
      applied to type dev_t, which is 64-bit. however, it appears some
      applications are not using dev_t but a smaller integer type (which
      works on Linux because the kernel's dev_t is really only 32-bit). to
      avoid the undefined behavior, do it as two shifts.
      9b732fe5
  28. 29 6月, 2013 2 次提交
    • R
      work around wrong kernel type for sem_nsems member of struct semid_ds · 062f40ef
      Rich Felker 提交于
      rejecting invalid values for n is fine even in the case where a new
      sem will not be created, since the kernel does its range checks on n
      even in this case as well.
      
      by default, the kernel will bound the limit well below USHRT_MAX
      anyway, but it's presumably possible that an administrator could
      override this limit and break things.
      062f40ef
    • R
      add missing type shmatt_t in sys/shm.h · 553d566c
      Rich Felker 提交于
      this type is not really intended to be used; it's just there to allow
      implementations to choose the type for the shm_nattch member of
      struct shmid_sh, presumably since historical implementations disagreed
      on the type. in any case, it needs to be there, so now it is.
      553d566c
  29. 27 5月, 2013 1 次提交
  30. 16 5月, 2013 1 次提交