Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-25 | AK: HashMap::set() didn't save new values for existing keys. | Andreas Kling | |
2019-03-24 | LibGUI+FileManager: Add a GIcon class to support multi-size icons. | Andreas Kling | |
A GIcon can contain any number of bitmaps internally, and will give you the best fitting icon when you call bitmap_for_size(). | |||
2019-02-04 | AK: Fix leak in HashTable move assignment operator. | Andreas Kling | |
2019-01-30 | Fix dumb bug in HashTable::clear(). | Andreas Kling | |
We forgot to clear the m_buckets pointer. This meant that multiple calls to clear() would cause trouble. | |||
2019-01-19 | Coding style fixes in AK. | Andreas Kling | |
2018-12-21 | Yet another pass of style fixes. | Andreas Kling | |
2018-12-04 | Import a simple text editor I started working on. | Andreas Kling | |
2018-11-07 | Add some basic setgroups(), getgroups() and initgroups(). | Andreas Kling | |
Also teach /bin/id to print the user's supplemental groups. | |||
2018-10-26 | Implement /proc/PID/vm. | Andreas Kling | |
Refactored SyntheticFileSystem to maintain an arbitrary directory structure. ProcFileSystem creates a directory entry in /proc for each new process. | |||
2018-10-25 | Add a very naive block cache to the DiskBackedFileSystem. | Andreas Kling | |
This would be a lot better as an LRU. Right now it's a 32-slot hash table with random eviction. | |||
2018-10-17 | Integrate ext2 from VFS into Kernel. | Andreas Kling | |
2018-10-14 | Fix HashTable::find() return iterator for items found in non-0 buckets. | Andreas Kling | |
2018-10-13 | Add HashTable::remove() and fix a bug where ConstIterator would skip the first. | Andreas Kling | |
2018-10-13 | Add a DoublyLinkedList template and start using it for HashTable. | Andreas Kling | |
2018-10-10 | Import all this stuff into a single repo called Serenity. | Andreas Kling | |