summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2020-06-23LibC+Kernel: Implement ppollNico Weber
2020-06-22LibC: Implement pselectNico Weber
2020-06-22LibC: Add timespec functions to sys/time.hNico Weber
2020-06-20LibC: In posix_spawn(), use _exit instead of exit on child errorNico Weber
2020-06-20LibC: Add addchdir() / addfchdir() to posix_spawn file actionsNico Weber
2020-06-20LibC: Add POSIX_SPAWN_SETSIGMASKNico Weber
2020-06-20LibC: Make sigprocmask error check more consistent with rest of this codeNico Weber
2020-06-19LibC: Implement file actions for posix_spawnNico Weber
2020-06-19LibC: Make spawn.h parse in C filesNico Weber
2020-06-19LibC: Add support for POSIX_SPAWN_RESETIDSNico Weber
2020-06-18Kernel+LibC: Remove setreuid() / setregid() againNico Weber
2020-06-18Kernel+LibC: Implement seteuid() and friends!Nico Weber
2020-06-17LibC: Add posix_spawn()!Nico Weber
2020-06-17Meta: Scale back overly informal user-facing stringsAndreas Kling
2020-06-17LibC: Make setgid() definition protoype match declarationNico Weber
2020-06-17Kernel+LibC: Do not return -ENAMETOOLONG from sys$readlink()Sergey Bugaev
2020-06-16LibC: Declare pthread_sigmask() in signal.h.Nico Weber
2020-06-15LibC: Add truncate().Nico Weber
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-06-08LibC: Don't assert on unknown mode character in fopen()Andreas Kling
2020-06-08LibC: Add nanosleep() wrapper around clock_nanosleep(CLOCK_REALTIME)Andreas Kling
2020-06-08LibC: Add IPPORT_RESERVED and IPPORT_USERRESERVEDAndreas Kling
2020-06-08LibC: Add ws_xpixel and ws_ypixel members to struct winsizeAndreas Kling
2020-06-03LibC: Make sure that ioctl() requests are #defined as macrosAndreas Kling
2020-05-30LibC: Rewrite getopt()Sergey Bugaev
2020-05-30AK+LibC: Add TODO() as an alternative to ASSERT_NOT_REACHED()Andreas Kling
2020-05-29Meta: Add a script check the presence of "#pragma once" in header filesEmanuele Torre
2020-05-29Kernel+Userland: Support remounting filesystems :^)Sergey Bugaev
2020-05-29Kernel: Support read-only filesystem mountsSergey Bugaev
2020-05-29Kernel+LibC: Move O_* and MS_* flags to UnixTypes.hSergey Bugaev
2020-05-28LibC: run clang-format on getopt.h to remove tab charactersEmanuele Torre
2020-05-28LibC: Add a O_CLOEXEC mode element to fopen()AnotherTest
2020-05-26AK: Rename FileSystemPath -> LexicalPathSergey Bugaev
2020-05-26LibC: Ensure abort() doesn't returnSergey Bugaev
2020-05-26LibC: Mark _exit() as noreturnSergey Bugaev
2020-05-26LibC: Remove endless loop after abort() callSergey Bugaev
2020-05-23LibC: Move ssize_t from <stddef.h> to <sys/types.h>Andreas Kling
2020-05-23Kernel+LibC: Fix various build issues introduced by ssize_tAndreas Kling
2020-05-23Kernel+LibC: Let's say that off_t is a ssize_tAndreas Kling
2020-05-23LibC: Declare ssize_t in a platform-agnostic wayAndreas Kling
2020-05-22LibC: Add (empty) netinet/tcp.h backLinus Groh
2020-05-22LibC: Sync file position when dropping read ahead bufferSergey Bugaev
2020-05-20Revert "AK+LibC: Move non-placement new/delete into LibC"Andreas Kling
2020-05-20Revert "LibC: Implement Itanium C++ ABI for static variable guards"Andreas Kling
2020-05-20Revert "Build: Include headers from LibC, LibM, and LibPthread with -isystem"Andreas Kling
2020-05-20LibC: Claim some copyright for stdioSergey Bugaev
2020-05-20LibC: Handle fgets(size = 0)Sergey Bugaev
2020-05-20Build: Include headers from LibC, LibM, and LibPthread with -isystemAndrew Kaster
2020-05-20LibC: Implement Itanium C++ ABI for static variable guardsAndrew Kaster
2020-05-20AK+LibC: Move non-placement new/delete into LibCAndrew Kaster