Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-24 | AK: Mark some helper things constexpr. | 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-20 | AK: Make StringImpl a bit smaller. | Andreas Kling | |
There's no need for a member char* m_characters if we always store them in the inline buffer. So with this patch, we now do. After that, rearrange the members a bit for ideal packing. :^) | |||
2019-06-18 | AK: Override StringImpl's operator delete to silence valgrind. | Andreas Kling | |
2019-06-07 | Meta: Tweak .clang-format to not wrap braces after enums. | Andreas Kling | |
2019-06-07 | AK: Run clang-format on everything. | Andreas Kling | |
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-03-12 | Kernel: Cache MAC<->IP mappings (from ARP responses) seen on the wire. | Andreas Kling | |
2019-02-25 | More moving towards using signed types. | Andreas Kling | |
I'm still feeling this out, but I am starting to like the general idea. | |||
2019-02-25 | Convert more RetainPtr use to Retained. | Andreas Kling | |
2019-02-06 | Bootloader: Locate the kernel's data segment and clear it. | Andreas Kling | |
This was a constant source of stupid bugs and I kept postponing it because I wasn't in the mood to write assembly code. Until now! :^) | |||
2018-12-28 | Plug leaks in SynthFS::remove_file(). | Andreas Kling | |
The process spawn stress test can now run forever. :^) | |||
2018-12-21 | Yet another pass of style fixes. | Andreas Kling | |
2018-11-09 | Make kernel build with clang. | Andreas Kling | |
It's a bit faster than g++ and seems to generate perfectly fine code. The kernel is also roughly 10% smaller(!) | |||
2018-11-07 | Add a Chomp feature to String construction that removes a trailing newline. | Andreas Kling | |
This will be useful in many situations. | |||
2018-10-22 | Oops, StringImpl's "the empty string" global was not always initialized. | Andreas Kling | |
These "oops forgot to initialize" bugs are getting annoying... | |||
2018-10-16 | Reduce dependence on STL. | Andreas Kling | |
2018-10-10 | Import all this stuff into a single repo called Serenity. | Andreas Kling | |