Age | Commit message (Expand) | Author |
2019-07-29 | Kernel+ProcessManager: Let processes have an icon and show it in the table. | Andreas Kling |
2019-07-27 | LibCore: Add CFileStreamReader, a simple streaming CFile reader. | Andreas Kling |
2019-07-27 | CIODevice: Try to preallocate the exact needed buffer size in read_all(). | Andreas Kling |
2019-07-27 | LibCore: Remove CSocket's bind() and listen(). | Andreas Kling |
2019-07-27 | LibCore: Port CoreIPCServer to using CLocalServer. | Andreas Kling |
2019-07-27 | LibCore: Use clang-format on CoreIPC{Client,Server}. | Andreas Kling |
2019-07-27 | CSocket: Add an on_ready_to_read callback. | Andreas Kling |
2019-07-27 | CIODevice: Add a virtual did_update_fd() no notify subclasses of fd change. | Andreas Kling |
2019-07-27 | LibCore: Add CLocalServer, a server-only local socket class. | Andreas Kling |
2019-07-27 | LibCore: Add comment about child events for partially-constructed children. | Andreas Kling |
2019-07-26 | LibCore: Add CSocket::bind() (virtual) and CSocket::listen(). | Andreas Kling |
2019-07-26 | CEventLoop: Convert dbgprintf() to dbg(). | Andreas Kling |
2019-07-25 | LibCore: Introduce a C_OBJECT macro. | Andreas Kling |
2019-07-25 | CEventLoop: Don't re-process already processed events when un-nesting. | Andreas Kling |
2019-07-25 | CSocket: Add missing <sys/un.h> include to fix host build. | Andreas Kling |
2019-07-25 | CSocket: Fix Clang warning about unused private member m_type. | Andreas Kling |
2019-07-25 | LibCore: Only build CThread on Serenity platforms. | Andreas Kling |
2019-07-24 | AK: Make HashMap::get(Key) return an Optional<Value>. | Andreas Kling |
2019-07-24 | Convert HashMap<Key, OwnPtr<T>> to HashMap<Key, NonnullOwnPtr<T>>. | Andreas Kling |
2019-07-24 | CEventLoop: Use NonnullOwnPtr for QueuedEvent::event. | Andreas Kling |
2019-07-23 | CEventLoop: Avoid undefined evaluation order in register_timer(). | Andreas Kling |
2019-07-21 | Libraries: Fix wrong paths to "Root" in the various install.sh scripts. | Andreas Kling |
2019-07-21 | Libraries: Remove unused "install" targets. | Andreas Kling |
2019-07-21 | Userspace: Deal with select() returning EINTR on a signal interruption | Robin Burchell |
2019-07-21 | CEventLoop: Skip over null events in the queue. | Andreas Kling |
2019-07-20 | CEventLoop: Use Vector::prepend(Vector&&) to shuffle events to outer loop. | Andreas Kling |
2019-07-20 | CEventLoop: Remove some no-longer-used virtuals. | Andreas Kling |
2019-07-18 | LibDraw: Introduce (formerly known as SharedGraphics.) | Andreas Kling |
2019-07-18 | ps: Port to using CProcessStatisticsReader and /proc/all | Robin Burchell |
2019-07-18 | CProcessStatisticsReader: Be consistent about terminology from the kernel down | Robin Burchell |
2019-07-17 | Rename new IPC headers & classes | Robin Burchell |
2019-07-17 | Port LibGUI to use CIPCClientSideConnection | Robin Burchell |
2019-07-17 | Make AClientConnection generic | Robin Burchell |
2019-07-17 | Port WSClientConnection to CIPCServerSideClient | Robin Burchell |
2019-07-17 | Introduce CIPCServerSideClient | Robin Burchell |
2019-07-16 | CNotifier: Turn into a CObject and Use the event queue to deliver events | Robin Burchell |
2019-07-16 | LibCore: Add a way to mark a socket as blocking (or not) | Robin Burchell |
2019-07-16 | CNotifier: Provide a way to unregister a notifier temporarily | Robin Burchell |
2019-07-16 | CSocket: Also call on_connected for local socket connections | Robin Burchell |
2019-07-16 | LibCore: Always call on_connected whether the connection was synchronous or not | Robin Burchell |
2019-07-14 | CLocalSocket: Add missing pragma once | Robin Burchell |
2019-07-14 | CEventLoop: Oops, I had the pipe reader/writer fd's mixed up. | Andreas Kling |
2019-07-14 | LibCore: Oops, fix infinite recursion in LogStream << CSocketAddress. | Andreas Kling |
2019-07-14 | LibCore: Port CSocket over to using dbg(). | Andreas Kling |
2019-07-14 | CObject: Add LogStream operator<< for CObject. | Andreas Kling |
2019-07-14 | CObject: Add custom_event() virtual. | Andreas Kling |
2019-07-14 | CEventLoop: Add wake(), a mechanism for waking up when blocked in select(). | Andreas Kling |
2019-07-14 | LibCore: Add CThread, a simple thread abstraction object. | Andreas Kling |
2019-07-13 | AudioServer: Assorted infrastructure work | Robin Burchell |
2019-07-13 | CEventLoop: When asked to exit the event loop, exit right away. | Andreas Kling |