Age | Commit message (Expand) | Author |
2019-06-07 | Meta: Tweak .clang-format to not wrap braces after enums. | Andreas Kling |
2019-06-07 | LibC: Run clang-format on everything. | Andreas Kling |
2019-05-30 | LibC: Move wait-related stuff to <sys/wait.h>. #POSIX | Andreas Kling |
2019-05-28 | LibC: Don't define ALWAYS_INLINE if it's already defined. | Andreas Kling |
2019-05-28 | Add clang-format file | Robin Burchell |
2019-05-28 | LibC: Move size_t, ptrdiff_t and NULL to stddef.h. #POSIX | Andreas Kling |
2019-05-28 | LibC: Move struct timeval to sys/time.h. #POSIX | Andreas Kling |
2019-05-22 | LibC: Implement wait() as a wrapper around waitpid(). | Andreas Kling |
2019-05-21 | LibC: First pass of compat work / stubs while trying to build OpenSSL. | Andreas Kling |
2019-05-20 | Kernel: Add getpeername() syscall, and fix getsockname() behavior. | Andreas Kling |
2019-05-20 | Kernel: Add support for recv() with MSG_DONTWAIT. | Andreas Kling |
2019-05-19 | Kernel+LibC: Implement getsockname() syscall. | Andreas Kling |
2019-05-16 | LibC: Allow {AF,PF}_UNIX as well as {AF,PF}_LOCAL | Robin Burchell |
2019-05-16 | LibC: Define a SOMAXCONN value in socket.h | Robin Burchell |
2019-05-10 | LibC: Oops, I forgot to commit sys/uio.{cpp,h} yesterday. | Andreas Kling |
2019-04-23 | Put assertions behind a DEBUG flag to make it easy to build without them. | Andreas Kling |
2019-04-21 | LibC: Minor compat tweak, move struct timezone to sys/time.h | Andreas Kling |
2019-03-27 | LibC: Time-related POSIX compliance fixes. | Andreas Kling |
2019-03-14 | LibC: Minor socket-related compat fixes. | Andreas Kling |
2019-03-13 | Userland+LibC: Add a new little "tc" program for testing TCP. | Andreas Kling |
2019-03-13 | Kernel: recvfrom() should treat the address arguments as outparams. | Andreas Kling |
2019-03-13 | Kernel: Start fleshing out an UDP implementation. | Andreas Kling |
2019-03-13 | Add support for socket send/receive timeouts. | Andreas Kling |
2019-03-13 | More work on IPv4 sockets and /bin/ping. | Andreas Kling |
2019-03-12 | Kernel+LibC+Userland: Yet more networking bringup hacking. | Andreas Kling |
2019-03-12 | Kernel+LibC+Userland: Start working on an IPv4 socket backend. | Andreas Kling |
2019-02-26 | More compat work. Rename libraries from LibFoo.a => libfoo.a | Andreas Kling |
2019-02-26 | More compat work. | Andreas Kling |
2019-02-24 | LibC: A bunch of compat work towards porting GCC. | Andreas Kling |
2019-02-22 | Move over to building all of userspace with i686-pc-serenity-g++. | Andreas Kling |
2019-02-22 | Switch over to building everything with i686-elf-g++. | Andreas Kling |
2019-02-20 | Support resizing the Terminal app. | Andreas Kling |
2019-02-15 | LibC: The standard C library needs to be able to build as pure C. | Andreas Kling |
2019-02-15 | Use modern C++ attributes instead of __attribute__ voodoo. | Andreas Kling |
2019-02-14 | LibC: Add socket(), bind(), listen(), accept() and connect(). | Andreas Kling |
2019-02-14 | Kernel: Begin implementing UNIX domain sockets. | Andreas Kling |
2019-02-08 | LibC: Implement enough missing stuff to get bash-5.0 running. :^) | Andreas Kling |
2019-02-03 | Get nyancat nyanning in Serenity. | Andreas Kling |
2019-02-03 | Kernel: Rewrite ProcFS. | Andreas Kling |
2019-01-31 | Make stat() work on device files again. | Andreas Kling |
2019-01-29 | Implement basic chmod() syscall and /bin/chmod helper. | Andreas Kling |
2019-01-23 | Kernel: Get rid of Unix namespace. | Andreas Kling |
2019-01-17 | Oops, forgot to add the select() files to LibC a while ago. | Andreas Kling |
2019-01-15 | Make it possible for a process to switch controlling terminals. | Andreas Kling |
2018-11-29 | Add TIOCGWINSZ ioctl so userland can determine terminal geometry. | Andreas Kling |
2018-11-18 | Finally hook up the mkdir code to a syscall. | Andreas Kling |
2018-11-17 | Various stubs while trying to get an old coreutils to build. | Andreas Kling |
2018-11-17 | Make bash-2.05b build with minimal changes. | Andreas Kling |
2018-11-16 | Reimplement tcsetattr/tcgetattr as ioctls. | Andreas Kling |
2018-11-16 | Add ioctl() and reimplement tcsetpgrp/tcsetpgrp as ioctls. | Andreas Kling |