| Commit message (Expand) | Author | Age | Files | Lines |
| * | bits/ioctl.h: add TIOC{G,S}ISO7816 from linux v4.20•••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];
};
| Szabolcs Nagy | 2019-03-13 | 1 | -0/+2 |
| * | move arch-invariant definitions out of bits/ioctl.h | Bobby Bingham | 2019-02-07 | 1 | -98/+0 |
| * | ioctl TIOCGPTPEER from linux v4.13•••added for safe opening of peer end of pty in a mount namespace.
new in linux commit c6325179238f1d4683edbec53d8322575d76d7e2
| Szabolcs Nagy | 2017-11-05 | 1 | -0/+1 |
| * | add SIOCGSTAMPNS socket ioctl macro to ioctl.h•••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.)
| Szabolcs Nagy | 2017-08-29 | 1 | -0/+1 |
| * | fix FIOQSIZE in arm ioctl.h•••arm ioctl.h is the same as the generic one except this macro,
so a workaround solution is used to avoid another ioctl.h copy.
| Szabolcs Nagy | 2016-07-03 | 1 | -0/+2 |
| * | add missing TIOC* macros to ioctl.h•••these are defined in linux asm/ioctls.h.
(powerpc64 and powerpc bits/ioctl.h are now identical)
| Szabolcs Nagy | 2016-07-03 | 1 | -0/+8 |
| * | add missing SIOCSIFNAME from linux/sockios.h to ioctl.h•••glibc ioctl.h has it too.
| Szabolcs Nagy | 2016-07-03 | 1 | -0/+1 |
| * | remove ioctl macros that were removed from linux uapi•••TIOCTTYGSTRUCT, TIOCGHAYESESP, TIOCSHAYESESP and TIOCM_MODEM_BITS
were removed from the linux uapi and not present in glibc ioctl.h
| Szabolcs Nagy | 2016-07-03 | 1 | -4/+0 |
| * | deduplicate the bulk of the arch bits headers•••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.
| Rich Felker | 2016-01-27 | 1 | -0/+197 |