1. 06 7月, 2022 1 次提交
  2. 11 3月, 2021 1 次提交
  3. 09 9月, 2020 1 次提交
  4. 03 11月, 2019 1 次提交
    • R
      move time64 ioctl numbers to generic bits/ioctl.h · b60fdf13
      Rich Felker 提交于
      now that all 32-bit archs have 64-bit time types, the values for the
      time-related ioctls can be shared. the mechanism for this is an
      arch/generic version of the bits header. archs which don't use the
      generic header still need to duplicate the definitions.
      
      x32, which does not use the new time64 values of the macros, already
      has its own overrides, so this commit does not affect it.
      b60fdf13
  5. 14 3月, 2019 1 次提交
    • S
      bits/ioctl.h: add TIOC{G,S}ISO7816 from linux v4.20 · 59904de7
      Szabolcs Nagy 提交于
      ISO7816 smart cards ioctls.
      linux commit ad8c0eaa0a418ae8ef3f9217638bb86439399eac
      
      the actual kernel definitions are
      
       #define TIOCGISO7816 _IOR('T', 0x42, struct serial_iso7816)
       #define TIOCSISO7816 _IOWR('T', 0x43, struct serial_iso7816)
      
      where struct serial_iso7816 is defined in linux/serial.h as
      
      struct serial_iso7816 {
      	__u32   flags;
      	__u32   tg;
      	__u32   sc_fi;
      	__u32   sc_di;
      	__u32   clk;
      	__u32   reserved[5];
      };
      59904de7
  6. 08 2月, 2019 1 次提交
  7. 06 11月, 2017 1 次提交
  8. 30 8月, 2017 1 次提交
    • S
      add SIOCGSTAMPNS socket ioctl macro to ioctl.h · cc086693
      Szabolcs Nagy 提交于
      it is defined in linux asm/sockios.h since commit
      ae40eb1ef30ab4120bd3c8b7e3da99ee53d27a23 (linux v2.6.22)
      but was missing from musl by accident.
      
      in musl the sockios macros are exposed in sys/ioctl.h together
      with other ioctl requests instead of in sys/socket.h because of
      namespace rules. (glibc has them in sys/socket.h under _GNU_SOURCE.)
      cc086693
  9. 04 7月, 2016 4 次提交
  10. 28 1月, 2016 1 次提交
    • R
      deduplicate the bulk of the arch bits headers · 4dfac115
      Rich Felker 提交于
      all bits headers that were identical for a number of 'clean' archs are
      moved to the new arch/generic tree. in addition, a few headers that
      differed only cosmetically from the new generic version are removed.
      
      additional deduplication may be possible in mman.h and in several
      headers (limits.h, posix.h, stdint.h) that mostly depend on whether
      the arch is 32- or 64-bit, but they are left alone for now because
      greater gains are likely possible with more invasive changes to header
      logic, which is beyond the scope of this commit.
      4dfac115
  11. 26 5月, 2013 1 次提交
  12. 19 9月, 2011 1 次提交
    • R
      initial commit of the arm port · d960d4f2
      Rich Felker 提交于
      this port assumes eabi calling conventions, eabi linux syscall
      convention, and presence of the kernel helpers at 0xffff0f?0 needed
      for threads support. otherwise it makes very few assumptions, and the
      code should work even on armv4 without thumb support, as well as on
      systems with thumb interworking. the bits headers declare this a
      little endian system, but as far as i can tell the code should work
      equally well on big endian.
      
      some small details are probably broken; so far, testing has been
      limited to qemu/aboriginal linux.
      d960d4f2
  13. 15 2月, 2011 3 次提交
  14. 12 2月, 2011 1 次提交