summaryrefslogtreecommitdiff
path: root/Libraries/LibC
AgeCommit message (Expand)Author
2020-05-17LibC: Don't let ctype isfoo() helpers access array out of boundsAndreas Kling
2020-05-17Kernel + LibC: Handle running processes in do_waitid()AnotherTest
2020-05-16Kernel: Absorb LibBareMetal back into the kernelAndreas Kling
2020-05-16Kernel: Remove now-unused KernelInfoPage.hAndreas Kling
2020-05-16Kernel: Remove sys$getdtablesize()Andreas Kling
2020-05-16Kernel: Remove the "kernel info page" used for fast gettimeofday()Andreas Kling
2020-05-15LibC: Fix execvp() errnoSergey Bugaev
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-12LibC: Always assign the offset pointer to endptr in strto{u,}ll()AnotherTest
2020-05-11LibC: Implement strtoull correctlyBen Wiederhake
2020-05-11LibC: Use more flexible digit parsing code, deduplicateBen Wiederhake
2020-05-11LibC: Implement new strtod, accurate up to 8 epsBen Wiederhake
2020-05-11LibC: Add minimal <netinet/ip.h>Yonatan Goldschmidt
2020-05-11LibC: Add missing <sys/time.h> include in <utmp.h>Yonatan Goldschmidt
2020-05-11LibC: Add inet_aton, based on inet_ptonYonatan Goldschmidt
2020-05-11Kernel+LibC: Add AF_MAXYonatan Goldschmidt
2020-05-11LibC: Return nullptr in fgets for size=0Yonatan Goldschmidt
2020-05-10LibC: Fix get{sock,peer}name to match their kernel-side prototypesYonatan Goldschmidt
2020-05-09Meta: Add script to enforce license headers & run it on TravisLinus Groh
2020-05-07LibC: Log calls to getrusageItamar
2020-05-05LibC: Remove ASSERT_NOT_REACHED in getrusageItamar
2020-05-02LibC: added F_SETLK and SO_TYPE defsEd Rochenski
2020-04-30AK: Add ALWAYS_INLINE, NEVER_INLINE and FLATTEN macrosAndreas Kling
2020-04-30LibC: Hint the compiler that assertions rarely failSergey Bugaev
2020-04-29Kernel: Fix integer overflow in framebuffer resolution handlingAndreas Kling
2020-04-26AK: Add a simple and inefficient Base64 decoderAndreas Kling
2020-04-26Kernel: Added the ability to set the hostname via new syscallLuke Payne
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