summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2020-04-18LibC: getprotoent() family of functionsRead H
2020-04-16LibC netdb: Requested ChangesRead H
2020-04-16LibC: Service entry APIRead H
2020-04-13LibC: Fix truncated strncpy() in getlogin()Andreas Kling
2020-04-13LibC: Fix truncated strncpy() in /etc/group parsingAndreas Kling
2020-04-13LibC: Fix strncpy() overflow in /etc/passwd parsingAndreas Kling
2020-04-13LibC: Fix strncpy() overflow in gethostbyname()Andreas Kling
2020-04-13LibC: Simplify ASSERT() to reduce code sizeAndreas Kling
2020-04-13LibC: Simplify the gettid() cache by just clearing the cache in fork()Andreas Kling
2020-04-13ptrace: Report error in PT_PEEK via errnoItamar
2020-04-13ptrace: Add PT_SETREGSItamar
2020-04-13ptrace: Add PT_POKEItamar
2020-04-13ptrace: Add PT_PEEKItamar
2020-04-13CPU: Handle breakpoint trapItamar
2020-04-12LibC: Cache the result of gettid() to avoid syscallsAndreas Kling
2020-04-12Kernel+LibC: Add minherit() and MAP_INHERIT_ZEROAndreas Kling
2020-04-11LibELF: Move validation methods to their own fileAndrew Kaster
2020-04-11LibELF: Move ELF classes into namespace ELFAndrew Kaster
2020-04-10Kernel+LibC: Remove ESUCCESSAndreas Kling
2020-04-06Kernel & Userland: Allow to mount image files formatted with Ext2FSLiav A
2020-04-06LibC: create a stub for getrusage.Xiao NuoFu
2020-04-06Meta: Add missing copyright headersAndreas Kling
2020-04-05LibC: Fix strtod() parsing of negative exponents (#1645)Stephan Unverwerth
2020-04-05Kernel: Add the SO_BINDTODEVICE socket optionAnotherTest
2020-04-03Revert "Kernel & Userland: Allow to mount image files formatted with Ext2FS"Andreas Kling
2020-04-02Kernel & Userland: Allow to mount image files formatted with Ext2FSLiav A
2020-03-28strace: Change implementation to use ptrace()Itamar
2020-03-28Kernel: Add 'ptrace' syscallItamar
2020-03-26LibC: Fix getline() forgetting to null-terminate on EOFSergey Bugaev
2020-03-22AK: Add FlyString, a simple flyweight string classAndreas Kling
2020-03-19LibC: Add new syscall to allow changing the system dateLiav A
2020-03-19Kernel & LibC: Add CLOCK_REALTIME constantLiav A
2020-03-16Kernel: Add sys$get_stack_bounds() for finding the stack base & sizeAndreas Kling
2020-03-15Userland: ifconfig can change the IP address of the default gatewaymarprok
2020-03-11Userland: Set the mask of a network adapter with ifconfig (#1388)Marios Prokopakis
2020-03-08LibC: Fix a bug involving miscalculating week counts of last yearhowar6hill
2020-03-08LibC: Reimplement asctime() in terms of strftime()howar6hill
2020-03-08Userspace: Add missing #includes now that AK/StdLibExtras.h is smallerAndreas Kling
2020-03-08AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*)Andreas Kling
2020-03-07LibWeb: Move everything into the Web namespaceAndreas Kling
2020-03-06LibC: Fix a indentation problem in time.cpphowar6hill
2020-03-06LibC: Fix crash in free() now that mprotect() works correctlyAndreas Kling
2020-03-06LibC: Implement time formatting functions, partially support timezonehowar6hill
2020-03-02AK: Move the wildcard-matching implementation to StringUtilshowar6hill
2020-02-28LibC: Move shbuf_* implementations to serenity.cppAndreas Kling
2020-02-28Kernel: Merge the shbuf_get_size() syscall into shbuf_get()Andreas Kling
2020-02-28LibC: Move shbuf_* API's to <serenity.h>Andreas Kling
2020-02-28Kernel+LibC: Rename shared buffer syscalls to use a prefixAndreas Kling
2020-02-25AK: Make Vector use size_t for its size and capacityAndreas Kling
2020-02-22LibC: Implement strchrnul()Shannon Booth