Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-08-11 | add memfd_create syscall wrapper | Waldemar Brodkorb | |
2021-04-09 | open: Add support for O_TMPFILE | Nicolas Cavallari | |
Since Linux 3.11, O_TMPFILE allows to create unnamed files that can be linked later on. It is internally defined as (O_TMPFILE | O_DIRECTORY) to make it fail on old kernels. Copying definitions from glibc for O_TMPFILE is not enough to support O_TMPFILE; The open() wrapper also need to pass the mode when the flag contains O_TMPFILE, otherwise, it will pass mode 000 which will succeed but yield unexpected results. openat() is curiously not affected since it passes the mode unconditionally.. Signed-off-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr> | |||
2021-02-19 | fcntl.h: Make F_DUPFD_CLOEXEC if _USE_XOPEN2K8 | Paul Cercueil | |
The F_DUPFD_CLOEXEC flag was added in POSIX 2008.09. Signed-off-by: Paul Cercueil <paul@crapouillou.net> | |||
2017-06-08 | fcntl.h: fixup namespace for O_DIRECTORY/O_NOFOLLOW/O_CLOEXEC | Waldemar Brodkorb | |
Sync with GNU C library. Found while trying to compile linux-rdma to uClibc-ng. Reported-by: Alexey Brodkin <Alexey.Brodkin@synopsys.com> | |||
2015-12-07 | add definitions for O_PATH | Waldemar Brodkorb | |
Only alpha, hppa and sparc need non-default value. | |||
2014-08-25 | fcntl.h: Define F_SETPIPE_SZ and F_GETPIPE_SZ | Khem Raj | |
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2012-11-18 | Replace FSF snail mail address with URLs | Mike Frysinger | |
This matches a similar change made to glibc. No functional changes here. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2009-10-07 | clean up O_CLOEXEC handling | Mike Frysinger | |
Drop the "#ifndef O_CLOEXEC" cruft, enable O_CLOEXEC in most fcntl.h headers, and import __ASSUME_O_CLOEXEC from glibc. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2008-11-15 | - Remove linux-specific prototypes if asked to. | Bernhard Reutner-Fischer | |
2008-11-15 | - revert wrong r24049 | Bernhard Reutner-Fischer | |
2008-11-15 | - Remove linux-specific prototypes if asked to. | Bernhard Reutner-Fischer | |
2008-09-16 | - add sync_file_range() | Bernhard Reutner-Fischer | |
Tested successfully on i386.. | |||
2008-05-03 | - add missing #endif | Bernhard Reutner-Fischer | |
2008-05-03 | - implement splice,vmsplice,tee for all arches | Bernhard Reutner-Fischer | |
- synch F_LINUX_SPECIFIC_BASE related fcntls for all arches | |||
2006-08-24 | fix from psm: enable readahead prototype | Mike Frysinger | |
2006-08-23 | sync with upstream via psm | Mike Frysinger | |
2006-03-29 | sync with glibc | Mike Frysinger | |
2006-02-22 | sync headers with glibc | Mike Frysinger | |
2004-12-06 | Add missing definition for O_DIRECT | Eric Andersen | |
2002-10-09 | Support O_STREAMING | Eric Andersen | |
2001-10-15 | include/bits from glibc-2.2.4-1 | David Schleef | |
2001-03-16 | Add powerpc port done by David Schleef <ds@schleef.org> | Eric Andersen | |