Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-09 | Kernel: Move PhysicalAddress.h into VM/ | Andreas Kling | |
2019-07-03 | AK: Rename the common integer typedefs to make it obvious what they are. | Andreas Kling | |
These types can be picked up by including <AK/Types.h>: * u8, u16, u32, u64 (unsigned) * i8, i16, i32, i64 (signed) | |||
2019-06-22 | Kernel: Fix all compiler warnings. | Andreas Kling | |
2019-06-21 | AK: Rename Retainable.h => RefCounted.h. | Andreas Kling | |
2019-06-21 | AK: Rename RetainPtr.h => RefPtr.h, Retained.h => NonnullRefPtr.h. | Andreas Kling | |
2019-06-21 | AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr. | Andreas Kling | |
2019-06-21 | AK: Rename Retainable => RefCounted. | Andreas Kling | |
(And various related renames that go along with it.) | |||
2019-06-07 | Kernel: Tweak some String&& => const String&. | Andreas Kling | |
String&& is just not very practical. Also return const String& when the returned string is a member variable. The call site is free to make a copy if he wants, but otherwise we can avoid the retain count churn. | |||
2019-05-28 | Add clang-format file | Robin Burchell | |
Also run it across the whole tree to get everything using the One True Style. We don't yet run this in an automated fashion as it's a little slow, but there is a snippet to do so in makeall.sh. | |||
2019-05-02 | Kernel: Simplify VMObject::is_anonymous(). | Andreas Kling | |
This doesn't need a separate flag. A VMObject is always anonymous if it has no backing inode. | |||
2019-05-02 | Kernel: Assign Lock names in class member initializers. | Andreas Kling | |
2019-04-06 | Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress. | Andreas Kling | |
2019-04-03 | Kernel: Move VM-related files into Kernel/VM/. | Andreas Kling | |
Also break MemoryManager.{cpp,h} into one file per class. |