summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC
AgeCommit message (Expand)Author
2021-08-12LibC+DynamicLoader: Prevent GCC from removing null checksDaniel Bertalan
2021-08-12LibC: Don't delete null check in `gettimeofday`Daniel Bertalan
2021-08-12Kernel+LibC: Use 64 bit values for ino_tLiav A
2021-08-12LibC: Add stub forwarders to LibRegex C APIJean-Baptiste Boric
2021-08-12Kernel: Make sys$perf_register_string() generate the string ID'sAndreas Kling
2021-08-12Kernel+LibC: Add sys$perf_register_string()Andreas Kling
2021-08-12Kernel+LibC: Add PERF_EVENT_SIGNPOSTAndreas Kling
2021-08-10Kernel: Add syscall performance event typeJean-Baptiste Boric
2021-08-10LibC: Use CLOCK_REALTIME_COARSE for gettimeofday()Andreas Kling
2021-08-10Kernel+LibC: Allow clock_gettime() to run without syscallsAndreas Kling
2021-08-10LibC+Kernel: Use an enum for clockid_t valuesAndreas Kling
2021-08-10LibC: Implement gettimeofday() in terms of clock_gettime(CLOCK_REALTIME)Andreas Kling
2021-08-10UserspaceEmulator+LibC: Add support for Region-of-Interest profilingAli Mohammad Pur
2021-08-08LibC: Fix negation overflow UB in `sys/mman.cpp`Daniel Bertalan
2021-08-08Meta: Add Clang support to the CMake build scriptsDaniel Bertalan
2021-08-08Userland: Use kmalloc_array() where appropriateAndreas Kling
2021-08-03LibC: Add definition for 'struct ip' in netinet/ip.hThomas Wagenveld
2021-08-02HackStudio: Enable building HackStudio on x86_64Gunnar Beutner
2021-07-30LibRegex+LibUnicode: Begin implementing Unicode property escapesTimothy Flynn
2021-07-30LibC: Stub mlock in sys/mmanLuke
2021-07-29Kernel+LibC: Add linger to sys/sockets.hLuke
2021-07-27LibC: Don't include C++ headers in C system headersGunnar Beutner
2021-07-27DynamicLoader+LibELF: Move self-relocation code into a separate fileGunnar Beutner
2021-07-27Kernel+LibC: Use argument for TIOCGPGRP ioctl valueBrian Gianforcaro
2021-07-26Kernel: Add option to build with coverage instrumentation and KCOVPatrick Meyer
2021-07-26LibC: Declare wide character type functions in wctype.hKenneth Myhra
2021-07-25LibC: Randomize malloc() block addresses on x86_64Andreas Kling
2021-07-25Kernel: Support ioctl SIOCSARP and SIOCDARPbrapru
2021-07-25Kernel: Remove unused madvise(MADV_GET_VOLATILE)Andreas Kling
2021-07-25Kernel: Make purgeable memory a VMObject level concept (again)Andreas Kling
2021-07-22LibC: Make calloc() actually fail on multiplication overflowAndreas Kling
2021-07-22LibC: Don't truncate arguments for ioctl() on x86_64Gunnar Beutner
2021-07-21LibC: Simplify assertion failure dbgln() a bitAndreas Kling
2021-07-20LibC: Implement flock(2) using fcntl's F_SETLKPeter Elliott
2021-07-20Kernel+LibC: Implement fcntl(2) advisory locksPeter Elliott
2021-07-19LibC: Add stub for iswprintKenneth Myhra
2021-07-18LibC strtod: Reduce incremental error to nearly nothingPeter Bindels
2021-07-17LibC: Fix grp.h includesJean-Baptiste Boric
2021-07-17LibC: Use 64-bit stack smash value for 64-bit modePeter Bindels
2021-07-17LibC: Make scanf always copy its va_listPeter Bindels
2021-07-15LibC: Don't include AK headers in system headersGunnar Beutner
2021-07-15LibC: Add putgrentM4x1m3
2021-07-14LibC: Use our implementation of `crti.o` and `crtn.o`Daniel Bertalan
2021-07-13Userland: Prefer using ARCH() over __LP64__Gunnar Beutner
2021-07-13LibC: Use C-style void cast in assert()Linus Groh
2021-07-13LibC: Increase minimum alignment for malloc() to 16 bytesGunnar Beutner
2021-07-13LibRegex+LibC: Make re_nsub available to the userAli Mohammad Pur
2021-07-12LibC: Replace use of do/while in assert() with the ternary operatorLinus Groh
2021-07-12LibC: Use correct macro to disable assert()Andrew Kaster
2021-07-11DynamicLoader+LibC: Make _start a naked functionHendiadyoin1