summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC
AgeCommit message (Expand)Author
2021-04-24Utilities: Add pathchkBrendan Coles
2021-04-22Everywhere: Use bgianf@serenityos.org for my copyright attributionBrian Gianforcaro
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21LibC: Add pwrite(..) implementation to match the existing pread(..)Brian Gianforcaro
2021-04-21LibC: Add LOG_NOWAIT stub to syslog.hBrian Gianforcaro
2021-04-21LibC: Add a definition for `INET6_ADDRSTRLEN`Brian Gianforcaro
2021-04-21LibC: Setup a unit test harness for LibC, add ctime_r / asctime_r tests.Brian Gianforcaro
2021-04-21LibC: Fix missing '\n' at the end of ctime/ctime_r/asctime/asctime_rBrian Gianforcaro
2021-04-21LibC: Add ctime_r() and asctime_r() implementationsBrian Gianforcaro
2021-04-20LibC+LibPthread: Implement function forwarding for libpthreadGunnar Beutner
2021-04-19LibC: Avoid division by zero in fread()/fwrite()Gunnar Beutner
2021-04-19LibC: Additional functionality for getaddrinfo()Gunnar Beutner
2021-04-19LibC: Expose new `profiling_free_buffer(..)` syscall.Brian Gianforcaro
2021-04-19LibC: Added sysexits.hPanagiotis Vasilopoulos
2021-04-19LibC: Improve error logging for execvp()Gunnar Beutner
2021-04-18LibDebug: Implement ability to set watchpointsFalseHonesty
2021-04-18Kernel: Add ptrace commands for reading/writing the debug registersFalseHonesty
2021-04-18LibC: Implement assignment suppression for vsscanfGunnar Beutner
2021-04-18LibC: Add netinet/in_systm.hHendiadyoin1
2021-04-18Kernel+LibC: Clean up how assertions work in the kernel and LibCGunnar Beutner
2021-04-18LibC+LibELF: Implement support for the dl_iterate_phdr helperGunnar Beutner
2021-04-18LibC: Make atexit handlers thread-safeGunnar Beutner
2021-04-18LibC+LibPthread: Make sure TLS keys are destroyed after everything elseGunnar Beutner
2021-04-18Everywhere: Fix a bunch of typosLinus Groh
2021-04-17Kernel+LibC: Update struct stat to use struct timespec instead of time_tGunnar Beutner
2021-04-16Kernel: Add some missing socket ioctlssin-ack
2021-04-16LibC: Don't call initializers in crt0Gunnar Beutner
2021-04-16Toolchain+LibC: Don't link LibC against crt0Gunnar Beutner
2021-04-16LibC: Shared libraries shouldn't have an entry pointGunnar Beutner
2021-04-14LibC: Use __inline_isascii() in isascii()Gunnar Beutner
2021-04-14LibC: Add support for isblank()Gunnar Beutner
2021-04-14LibC: Add missing macro for _SC_CLK_TCKGunnar Beutner
2021-04-14LibC: Turn regex_t and regmatch_t into typedefsGunnar Beutner
2021-04-14LibC: Change return type for sleep() to unsigned intGunnar Beutner
2021-04-14LibC: Add definition for the NI_NAMEREQD macroGunnar Beutner
2021-04-14LibPthread: Implement semaphore functionsGunnar Beutner
2021-04-14LibC: Add definitions for INTMAX_C and UINTMAX_CGunnar Beutner
2021-04-14LibC: Add missing include in <syslog.h>Gunnar Beutner
2021-04-13LibC: getaddrinfo: Set addrinfo sin_port to 0 if service arg is NULLBrendan Coles
2021-04-12LibC: Implement getaddrinfo(), freeaddrinfo(), gai_strerror() and getnameinfo()Gunnar Beutner
2021-04-12LibC: The port numbers returned by getservby*() should be in network byte orderGunnar Beutner
2021-04-12LibC: Validate the len argument for inet_ntop()Gunnar Beutner
2021-04-12LibC: Use dbgln() in strerror() and strsignal()Gunnar Beutner
2021-04-12LibC: Turn CRASH() into a function and add noreturn attributeGunnar Beutner
2021-04-11LibC: getopt() and getopt_long() shouldn't modify argvGunnar Beutner
2021-04-11LibC: Move S_* defines into <fcntl.h>Gunnar Beutner
2021-04-11LibC: Make <limits.h> compatible with GCC so that it doesn't install a fixed ...Gunnar Beutner
2021-04-11LibC: Provide macros for the <ctype.h> functionsGunnar Beutner
2021-04-11LibC: Include additional headers in <arpa/inet.h>Gunnar Beutner
2021-04-10AK+Everywhere: Make StdLibExtras templates less wrapper-yAnotherTest