summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2019-03-24Kernel: Fix broken destruction order for Process/Thread.Andreas Kling
2019-03-23Kernel: Add a Thread::all_threads() helper.Andreas Kling
2019-03-23Kernel+LibC: Add a simple create_thread() syscall.Andreas Kling
2019-03-23Kernel: Set the colonel task to low priority.Andreas Kling
2019-03-23Kernel: Don't add the colonel process' main thread to g_threads.Andreas Kling
2019-03-23Kernel: Introduce threads, and refactor everything in support of it.Andreas Kling
2019-03-21Use 64-bit integers inside Stopwatch to enable longer timings.Andreas Kling
2019-03-21SharedGraphics: Implement a simple PNG decoder.Andreas Kling
2019-03-20Kernel+LibC: Don't crash upon traversal of large directories.Andreas Kling
2019-03-20Kernel: Oops, forgot to add Alarm.h earlier. Here it is.Andreas Kling
2019-03-20Kernel: Remove ioctl for getting a socket peer's PID.Andreas Kling
2019-03-20Kernel: Snooze the NetworkTask until there are incoming packets to process.Andreas Kling
2019-03-20Move WindowServer into Servers.Andreas Kling
2019-03-20Rename DNSLookupServer => LookupServer.Andreas Kling
2019-03-20Kernel: Don't panic if a call redirected to Device::open() has an error.Andreas Kling
2019-03-20Kernel: Accepting sockets don't need to retain the client sockets.Andreas Kling
2019-03-20Kernel: connect() should fail with EISCONN for already-connected sockets.Andreas Kling
2019-03-20Kernel: Fix race between accept() and connect().Andreas Kling
2019-03-20Kernel: DoubleBuffer can return early if read/write is called with !size.Andreas Kling
2019-03-20LibC: Implement gethostbyname() by talking to the DNSLookupServer.Andreas Kling
2019-03-19DNSLookupServer: Start working on a userspace DNS resolver.Andreas Kling
2019-03-19LibGUI: Implement nested event loops to support dialog boxes.Andreas Kling
2019-03-18LibGUI: Add GTCPSocket and base class GSocket (inherits from GIODevice.)Andreas Kling
2019-03-18IPv4: Add simple pseudorandom ephemeral port allocators for TCP and UDP.Andreas Kling
2019-03-17AK: Make ByteBuffer's copy() and wrap() take void*.Andreas Kling
2019-03-16Kernel: Remove the one client of Vector-with-custom-allocator.Andreas Kling
2019-03-16Move Lock from AK to Kernel, since it only works inside the kernel.Andreas Kling
2019-03-16AK: Remove Buffer<T> since it was only ever instantiated with T=byte.Andreas Kling
2019-03-15IRCClient: Start working on a simple graphical IRC client.Andreas Kling
2019-03-14TCP: Correct checksum for packets with odd number of bytes.Andreas Kling
2019-03-14TCP: Collect the payload if present in a packet with FIN set.Andreas Kling
2019-03-14TCP: Start working on auto-closing connections when we get FIN.Andreas Kling
2019-03-14Kernel: Handle unaligned ELF segments gracefully in the executable loader.Andreas Kling
2019-03-14Kernel: Remove leftover debug spam when returning from mkdir() syscall.Andreas Kling
2019-03-14IPv4: Factor out UDP parts of IPv4Socket into a UDPSocket class.Andreas Kling
2019-03-14IPv4: Move more stuff from IPv4Socket to TCPSocket.Andreas Kling
2019-03-14Kernel: Factor out TCP parts of IPv4Socket into a TCPSocket class.Andreas Kling
2019-03-14TCP: Update our side's ack number based on the other side's seq number.Andreas Kling
2019-03-14Kernel: Add SocketHandle helper class that wraps locked sockets.Andreas Kling
2019-03-14IPv4: Last burst of TCP hacking for today.Andreas Kling
2019-03-14IPv4: More work on the TCP implementation.Andreas Kling
2019-03-14IPv4: More work on the TCP implementation.Andreas Kling
2019-03-13IPv4: More hacking on bringing up TCP support.Andreas Kling
2019-03-13Userland+LibC: Add a new little "tc" program for testing TCP.Andreas Kling
2019-03-13IPv4: Begin fleshing out TCP support.Andreas Kling
2019-03-13IPv4: Do the TCP-to-socket mapping in the same way as UDP.Andreas Kling
2019-03-13IPv4: Use the UDP-to-socket map to handle incoming UDP packets.Andreas Kling
2019-03-13IPv4: Dynamically allocate the UDP source port if needed.Andreas Kling
2019-03-13IPv4: More work on UDP support.Andreas Kling
2019-03-13IPv4: recvfrom() shouldn't care about what's in the outparam on entry.Andreas Kling