1. 06 3月, 2014 1 次提交
  2. 01 3月, 2014 1 次提交
    • R
      improve configure's target arch matching · 0b8f0c57
      Rich Felker 提交于
      most notably, it was failing to match sh4-*, etc., but in general the
      explicit matching of hyphens for some archs was problematic because it
      failed to accept simply the musl-style arch name (without a gcc-style
      tuple) as an input. the original motivation of matching hyphens was to
      prevent incorrectly identifying a 64-bit arch as the corresponding
      32-bit arch (e.g. mips* matching mips64) but this is easily fixed by
      simply checking (and for now, rejecting as unsupported) the relevant
      64-bit archs.
      0b8f0c57
  3. 28 2月, 2014 5 次提交
  4. 26 2月, 2014 1 次提交
    • R
      fix readdir not to set ENOENT when directory is removed while reading · b9f7f2e8
      Rich Felker 提交于
      per POSIX, ENOENT is reserved for invalid stream position; it is an
      optional error and would only happen if the application performs
      invalid seeks on the underlying file descriptor. however, linux's
      getdents syscall also returns ENOENT if the directory was removed
      between the time it was opened and the time of the read. we need to
      catch this case and remap it to simple end-of-file condition (null
      pointer return value like an error, but no change to errno). this
      issue reportedly affects GNU make in certain corner cases.
      
      rather than backing up and restoring errno, I've just changed the
      syscall to be made in a way that doesn't affect errno (via an inline
      syscall rather than a call to the __getdents function). the latter
      still exists for the purpose of providing the public getdents alias
      which sets errno.
      b9f7f2e8
  5. 25 2月, 2014 8 次提交
  6. 24 2月, 2014 3 次提交
  7. 23 2月, 2014 7 次提交
  8. 22 2月, 2014 5 次提交
    • R
      sys/sem.h: cheat and make all longs use time_t instead · 1a2e55b9
      rofl0r 提交于
      most of the members should be time_t anyway, and time_t has the
      correct semantics for "syscall_long", so it works on all archs, even x32.
      1a2e55b9
    • R
      3b168ce1
    • R
      internal/syscall.h: add syscall_arg_t macro · 5cc1d920
      rofl0r 提交于
      some 32-on-64 archs require that the actual syscall args be long long.
      in that case syscall_arch.h can define syscall_arg_t to whatever it needs
      and syscall.h picks it up.
      all other archs just use long as usual.
      5cc1d920
    • R
      internal/syscall.h: use a macro for the syscall args casts · bf84967c
      rofl0r 提交于
      this allows syscall_arch.h to define the macro __scc if special
      casting is needed, as is the case for x32, where the actual syscall
      arguments are 64bit, but, in case of pointers, would get sign-extended
      and thus become invalid.
      bf84967c
    • R
      add fallback emulation for accept4 on old kernels · dc01e2cb
      Rich Felker 提交于
      the other atomic FD_CLOEXEC interfaces (dup3, pipe2, socket) already
      had such emulation in place. the justification for doing the emulation
      here is the same as for the other functions: it allows applications to
      simply use accept4 rather than having to have their own fallback code
      for ENOSYS/EINVAL (which one you get is arch-specific!) and there is
      no reasonable way an application could benefit from knowing the
      operation is emulated/non-atomic since there is no workaround at the
      application level for non-atomicity (that is the whole reason these
      interfaces were added).
      dc01e2cb
  9. 19 2月, 2014 1 次提交
  10. 14 2月, 2014 2 次提交
  11. 12 2月, 2014 2 次提交
  12. 11 2月, 2014 1 次提交
  13. 10 2月, 2014 3 次提交
    • B
      clone: make clone a wrapper around __clone · fdf5f1b1
      Bobby Bingham 提交于
      The architecture-specific assembly versions of clone did not set errno on
      failure, which is inconsistent with glibc.  __clone still returns the error
      via its return value, and clone is now a wrapper that sets errno as needed.
      The public clone has also been moved to src/linux, as it's not directly
      related to the pthreads API.
      
      __clone is called by pthread_create, which does not report errors via
      errno.  Though not strictly necessary, it's nice to avoid clobbering errno
      here.
      fdf5f1b1
    • S
      7ee48f7b
    • S
      fix fesetenv(FE_DFL_ENV) on i386 · 929729d4
      Szabolcs Nagy 提交于
      the default fenv was not set up properly, in particular the
      tag word that indicates the contents of the x87 registers was
      set to 0 (used) instead of 0xffff (empty)
      
      this could cause random crashes after setting the default fenv
      because it corrupted the fpu stack and then any float computation
      gives NaN result breaking the program logic (usually after a
      float to integer conversion).
      929729d4