1. 05 1月, 2013 1 次提交
  2. 02 1月, 2013 1 次提交
  3. 29 12月, 2012 1 次提交
  4. 28 12月, 2012 1 次提交
    • R
      align EPOLL_* flags with fcntl O_* flag definitions, which vary by arch · 761ebe06
      Rich Felker 提交于
      the old definitions were wrong on some archs. actually, EPOLL_NONBLOCK
      probably should not even be defined; it is not accepted by the kernel
      and it's not clear to me whether it has any use at all, even if it did
      work. this issue should be revisited at some point, but I'm leaving it
      in place for now in case some applications reference it.
      761ebe06
  5. 27 12月, 2012 1 次提交
  6. 20 12月, 2012 1 次提交
  7. 19 12月, 2012 4 次提交
    • S
      math: more correct tgmath.h type cast logic · 3c4214db
      Szabolcs Nagy 提交于
      __IS_FP is a portable integer constant expression now
      (uses that unsigned long long is larger than float)
      the result casting logic should work now on all compilers
      supporting typeof
      3c4214db
    • R
      add inet_network (required for wine) · 36d73038
      rofl0r 提交于
      36d73038
    • R
      link.h: expose glibc/svr4 dynlinker debugging glue · 26cf9c3c
      rofl0r 提交于
      this is already implemented in the dynliker (see struct debug),
      but was not exposed.
      we need it to do so to make wine happy...
      26cf9c3c
    • S
      math: new type cast logic in tgmath.h · e9e2b66e
      Szabolcs Nagy 提交于
      * return type logic is simplified a bit and fixed (see below)
      * return type of conj and cproj were wrong on int arguments
      * added comments about the pending issues
      (usually we don't have comments in public headers but this is
      not the biggest issue with tgmath.h)
      
      casting the result to the right type cannot be done in c99
      (c11 _Generic can solve this but that is not widely supported),
      so the typeof extension of gcc is used and that the ?: operator
      has special semantics when one of the operands is a null
      pointer constant
      
      the standard is very strict about the definition of null
      pointer constants so typeof with ?: is still not enough so
      compiler specific workaround is used for now
      
      on gcc '!1.0' is a null pointer constant so we can use the old
      __IS_FP logic (eventhough it's non-standard)
      
      on clang (and on gcc as well) 'sizeof(void)-1' is a null
      pointer constant so we can use
       !(sizeof(*(0?(int*)0:(void*)__IS_FP(x)))-1)
      (this is non-standard as well), the old logic is used by
      default and this new one on clang
      e9e2b66e
  8. 15 12月, 2012 1 次提交
  9. 14 12月, 2012 2 次提交
  10. 12 12月, 2012 2 次提交
  11. 11 12月, 2012 2 次提交
    • R
      fix regressions in app compatibility from previous sys/ipc.h changes · 490d4a0e
      Rich Felker 提交于
      despite glibc using __key and __seq rather than key and seq, some
      applications, notably busybox, assume the names are key and seq unless
      glibc is being used. and the names key and seq are really the ones
      that _should_ be exposed when not attempting to present a
      standards-conforming namespace; apps should not be using names that
      begin with double-underscore. thus, the optimal fix is to use key and
      seq as the actual names of the members when in bsd/gnu source profile,
      and define macros for __key and __seq that redirect to plain key and
      seq.
      490d4a0e
    • R
      syscall() declaration belongs in unistd.h, not sys/syscall.h · baf246e5
      Rich Felker 提交于
      traditionally, both BSD and GNU systems have it this way.
      sys/syscall.h is purely syscall number macros. presently glibc exposes
      the syscall declaration in unistd.h only with _GNU_SOURCE, but that
      does not reflect historical practice.
      baf246e5
  12. 07 12月, 2012 11 次提交
  13. 06 12月, 2012 2 次提交
    • R
      fix inefficiency of math.h isless, etc. macros · 96b3ea53
      Rich Felker 提交于
      previously, everything was going through an intermediate conversion to
      long double, which caused the extern __fpclassifyl function to get
      invoked, preventing virtually all optimizations of these operations.
      
      with the new code, tests on constant float or double arguments compile
      to a constant 0 or 1, and tests on non-constant expressions are
      efficient. I may later add support for __builtin versions on compilers
      that support them.
      96b3ea53
    • R
      add scsi headers scsi.h and sg.h · 91b05889
      Rich Felker 提交于
      due to some historical oddity, these are considered libc headers
      rather than kernel headers. the kernel used to provide them too, but
      it seems modern kernels do not install them, so let's just do the
      easiest thing and provide them. stripped-down versions provided by
      John Spencer.
      91b05889
  14. 05 12月, 2012 1 次提交
  15. 04 12月, 2012 2 次提交
    • R
      add _ALL_SOURCE as an alias for _GNU_SOURCE/enable-everything · b3175f5c
      Rich Felker 提交于
      reportedly this is a semi-common practice among some BSDs and a few
      other systems, and will improve application compatibility.
      b3175f5c
    • R
      feature test macros: make _GNU_SOURCE enable everything · 769fd4ce
      Rich Felker 提交于
      previously, a few BSD features were enabled only by _BSD_SOURCE, not
      by _GNU_SOURCE. since _BSD_SOURCE is default in the absence of other
      feature test macros, this made adding _GNU_SOURCE to a project not a
      purely additive feature test macro; it actually caused some features
      to be suppressed.
      
      most of the changes made by this patch actually bring musl in closer
      alignment with the glibc behavior for _GNU_SOURCE. the only exceptions
      are the added visibility of functions like strlcpy which were BSD-only
      due to being disliked/rejected by glibc maintainers. here, I feel the
      consistency of having _GNU_SOURCE mean "everything", and especially
      the property of it being purely additive, are more valuable than
      hiding functions which glibc does not have.
      769fd4ce
  16. 03 12月, 2012 1 次提交
    • R
      fix a couple issues in the inttypes.h PRI/SCN macros · 216b7065
      Rich Felker 提交于
      most importantly, the format/scan macros for the [u]int_fast16_t and
      [u]int_fast32_t types were defined incorrectly assuming these types
      would match the native word/pointer size. this is incorrect on any
      64-bit system; the "fast" types for 16- and 32-bit integers are simply
      int.
      
      another issue which was "only a warning" (despite being UB) is that
      the choice of "l" versus "ll" was incorrect for 64-bit types on 64-bit
      machines. while it would "work" to always use "long long" for 64-bit
      types, we use "long" on 64-bit machines to match what glibc does and
      what the ABI documents recommend. the macro definitions were probably
      right in very old versions of musl, but became wrong when we aligned
      most closely with the 'standard' ABI. checking UINTPTR_MAX is an easy
      way to get the system wordsize without pulling in new headers.
      
      finally, the useless __PRIPTR macro to allow the underlying type of
      [u]intptr_t to vary has been removed. we are using "long" on all
      targets, and thankfully this matches what glibc does, so I do not
      envision ever needing to change it. thus, the "l" has just been
      incorporated directly in the strings.
      216b7065
  17. 01 12月, 2012 1 次提交
  18. 27 11月, 2012 3 次提交
  19. 26 11月, 2012 2 次提交