summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-08-06Kernel: Allow zero-fill page faults on kernel-only pagesAndreas Kling
2019-08-06LibCore: Initialise m_port as zero in CSocketAddressConrad Pankoff
2019-08-06Launcher: Add ChanViewer to default configConrad Pankoff
2019-08-06Terminal: Fix trying to free() a stack variableSergey Bugaev
2019-08-06Kernel: Add mapping from page directory base (PDB) to PageDirectoryAndreas Kling
2019-08-06Kernel: Break region_from_vaddr() into {user,kernel}_region_from_vaddrAndreas Kling
2019-08-06Kernel: Add LogStream operator<< for VirtualAddressAndreas Kling
2019-08-06Kernel: Don't treat read faults like CoW exceptionsAndreas Kling
2019-08-06Kernel: Clean up the page fault handling code a bitAndreas Kling
2019-08-06KBuffer: Add set_size() and LogStream operator<<Andreas Kling
2019-08-06Kernel: On kernel NP fault, always copy into *active* page directoryAndreas Kling
2019-08-05SynthFS: Remove unused create_text_file() featureAndreas Kling
2019-08-05AK: Fix leak in Optional(Optional&&)Andreas Kling
2019-08-05AK: Optional::operator=(Optional&&) should clear movee's has_value bitAndreas Kling
2019-08-05ChanViewer: Add a status bar to show loading statusAndreas Kling
2019-08-05GComboBox: Make set_only_allow_values_from_model() actually take effectAndreas Kling
2019-08-05ChanViewer: Fetch the list of boards and allow switching the boardAndreas Kling
2019-08-05GComboBox: Include the selected index with the on_change notificationAndreas Kling
2019-08-05LibGUI: Allow specifying the model column for GListView and GComboBoxAndreas Kling
2019-08-05GComboBox: Constrain the list popup window height to the desktop rectAndreas Kling
2019-08-05Meta: Add some recently-added features to the listAndreas Kling
2019-08-05CEventLoop: Create the wake pipe with O_CLOEXECSergey Bugaev
2019-08-05Kernel+LibC: Support passing O_CLOEXEC to pipe()Sergey Bugaev
2019-08-05AK: Do not keep an open FD in MmappedFileSergey Bugaev
2019-08-05Lagom: Disable building the IPC client/server apps for nowAndreas Kling
2019-08-05SynthFS: Oops, fix build.Andreas Kling
2019-08-05LibCore: Add CTCPServerConrad Pankoff
2019-08-05Kernel: Use KBuffers for ProcFS and SynthFSAndreas Kling
2019-08-05Kernel: Add a little comment header about KBufferAndreas Kling
2019-08-05Kernel: Make KBuffer a value-type wrapper around a KBufferImplAndreas Kling
2019-08-05IPv4: Remove an unnecessary copy of each outgoing IPv4 payloadAndreas Kling
2019-08-05Net: Let Socket have read/write wrappers around sendto/recvfromAndreas Kling
2019-08-05Userland: Implement truncate commandConrad Pankoff
2019-08-05ChanViewer: Show thread subjects in the catalog viewAndreas Kling
2019-08-04ChanViewer: If catalog download fails, don't try to parse response JSONAndreas Kling
2019-08-04LibCore: Move CHttpJob and CNetworkJob output to the right placesAndreas Kling
2019-08-04CSocket: Close the underlying socket on destructionAndreas Kling
2019-08-04Net: Use KBuffers for network adapter packet queuesAndreas Kling
2019-08-04Kernel: Flush the TLB (page only) when copying in a new kernel mappingAndreas Kling
2019-08-04IPv4: Use KBuffer instead of ByteBuffer for socket receive queuesAndreas Kling
2019-08-04Kernel: Add KBuffer, a simple byte buffer backed by kernel-only memoryAndreas Kling
2019-08-04Kernel: Remove more unused members of IPv4Socket.Andreas Kling
2019-08-04Kernel: Remove a bunch of unused members in IPv4Socket.Andreas Kling
2019-08-04JsonParser: Fold extract_while() into parse_number()Andreas Kling
2019-08-04AK: Add VectorIterator::index()Andreas Kling
2019-08-04Vector: Add find() and some iterator improvementsAndreas Kling
2019-08-04HashTable: Use the Bucket type in some places over SinglyLinkedList<T>Andreas Kling
2019-08-04CHttpJob: Drive response download via on_ready_read instead of blockingAndreas Kling
2019-08-04JsonParser: Oops, fix build.Andreas Kling
2019-08-04Ports: mbedtlsConrad Pankoff