summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2019-03-13Kernel: Start fleshing out an UDP implementation.Andreas Kling
2019-03-13Add support for socket send/receive timeouts.Andreas Kling
2019-03-13NetworkAdapter: Use a ByteBuffer instead of kmalloc/kfree in send().Andreas Kling
2019-03-13More work on IPv4 sockets and /bin/ping.Andreas Kling
2019-03-13Kernel: Oops, gettimeofday()'s tv_usec should be micro, not milliseconds.Andreas Kling
2019-03-12Kernel+LibC+Userland: Yet more networking bringup hacking.Andreas Kling
2019-03-12Kernel+LibC+Userland: Start working on an IPv4 socket backend.Andreas Kling
2019-03-12Kernel: Add a way to look up NetworkAdapters by IPv4 address.Andreas Kling
2019-03-12Kernel: Collect IPv4 stuff in IPv4.h and ARP stuff in ARP.h.Andreas Kling
2019-03-12Kernel: More work on the ICMP and IPv4 support.Andreas Kling
2019-03-12Kernel: Fix up the ICMP implementation to generate correct Echo replies.Andreas Kling
2019-03-12Kernel: More work on ICMP support.Andreas Kling
2019-03-12Kernel: Start adding IPv4 support, starting with ICMP echo messages.Andreas Kling
2019-03-12Kernel: Tidy up networking code with some named constants.Andreas Kling
2019-03-12Kernel: Cache MAC<->IP mappings (from ARP responses) seen on the wire.Andreas Kling
2019-03-12Kernel: Minor style cleanup in NetworkTask.Andreas Kling
2019-03-11Kernel: Bring up enough networking code that we can respond to ARP requests.Andreas Kling
2019-03-11Kernel: Add a NetworkTask and a received network packet queue.Andreas Kling
2019-03-11Kernel: More work on bringing up E1000 support.Andreas Kling
2019-03-11Kernel: Remove accidentally committed debugging code.Andreas Kling
2019-03-10Kernel: More work on Ethernet support.Andreas Kling
2019-03-10Kernel: A bunch of hacking towards initial Ethernet support.Andreas Kling
2019-03-10Kernel: Add a simple MACAddress class.Andreas Kling
2019-03-10Kernel: Start adding support for E1000 network adapters.Andreas Kling
2019-03-10ProcessManager: Show some basic system memory stats below the process table.Andreas Kling
2019-03-09LibGUI: Use a separate data role for the table model sorting order.Andreas Kling
2019-03-09Make it possible to sort a GTableModel by column+order.Andreas Kling
2019-03-08Add a C++ helper class for working with shared buffers.Andreas Kling
2019-03-08Kernel: Minor tidying in BXVGADevice.Andreas Kling
2019-03-07TextEditor: Open an empty document by default.Andreas Kling
2019-03-07Kernel: Detect the Delete key.Andreas Kling
2019-03-07Kernel: Detect the Home and End keyboard keys.Andreas Kling
2019-03-07Begin working on a graphical TextEditor.Andreas Kling
2019-03-06Kernel: And some more KResult/KResultOr<T> porting work.Andreas Kling
2019-03-06Kernel: Port more code to KResult and KResultOr<T>.Andreas Kling
2019-03-06Kernel: Add two error checks for open() to return EISDIR or ENODEV.Andreas Kling
2019-03-06Kernel: Dump kernel stack trace on assertion failure.Andreas Kling
2019-03-05Kernel+WindowServer: Move mouse input signal parsing to kernel driver.Andreas Kling
2019-03-05Kernel: Remove "requested wakeups" feature.Andreas Kling
2019-03-05Kernel: More signal handling improvements.Andreas Kling
2019-03-05Kernel: Returning from a signal handler reset the signal mask correctly.Andreas Kling
2019-03-05Kernel: Block a signal from being dispatched again until handler returns.Andreas Kling
2019-03-04Kernel: SIGCONT should unblock a blocked process.Andreas Kling
2019-03-03Kernel: Detect the Tab key. :^)Andreas Kling
2019-03-03Detect the "Logo" (Windows/Apple/whatever) key and use it for window resize.Andreas Kling
2019-03-03Kernel: No need to check is_superuser() after may_execute().Andreas Kling
2019-03-03LibGUI: Move shortcut actions from GEventLoop to GApplications.Andreas Kling
2019-03-03Kernel: Try to do the right thing by default for unhandled signals.Andreas Kling
2019-03-03Applications: Map Alt+F4 to Quit in FileManager/ProcessManager/Terminal.Andreas Kling
2019-03-02Kernel: Keyboard should detect the Page Up and Page Down keys.Andreas Kling