Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-22 | Everything: Move to SPDX license identifiers in all files. | Brian Gianforcaro | |
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt * | |||
2021-03-12 | Everywhere: Remove klog(), dbg() and purge all LogStream usage :^) | Andreas Kling | |
Good-bye LogStream. Long live AK::Format! | |||
2021-02-20 | AK: Remove unused kprintf macro | Andreas Kling | |
This hasn't been used for quite some time. | |||
2021-02-20 | AK+LibC: Remove dbgprintf() :^) | Andreas Kling | |
Everything has been moved to dbgln() or other AK::Format-based APIs. We can finally get rid of this old thing. | |||
2020-12-26 | LibC: Enable compiler warnings for printf format strings | Sahan Fernando | |
2020-10-04 | AK: Make the return type of dbgputstr consistent. | asynts | |
2020-08-22 | AK+Kernel: Support snprintf | Ben Wiederhake | |
In contrast to sprintf, which might overflow the given buffer. I feel bad about the code duplication, but that is a pre-existing issue. | |||
2020-08-09 | LibELF+Lagom: Work towards getting LibELF in Lagom | Nico Weber | |
Mostly -Wformat fixes, some of which pointed out real (if benign) bugs. | |||
2020-08-06 | AK+Kernel+LibC: Add vdbgprintf() | Andreas Kling | |
This is like dbgprintf() except it takes a va_list instead of ... | |||
2020-05-23 | Kernel+LibC: Fix various build issues introduced by ssize_t | Andreas Kling | |
Now that ssize_t is derived from size_t, we have to | |||
2020-05-23 | AK: Fix inconsistent signature for dbgputstr() | Andreas Kling | |
2020-05-16 | Kernel: Absorb LibBareMetal back into the kernel | Andreas Kling | |
This was supposed to be the foundation for some kind of pre-kernel environment, but nobody is working on it right now, so let's move everything back into the kernel and remove all the confusion. | |||
2020-04-06 | AK: Make dbgprintf() and dbgputstr() go to stderr on non-Serenity hosts | Andreas Kling | |
2020-02-15 | AK: Don't bring in LibBareMetal's kstdio.h in userspace | Andreas Kling | |
2020-02-15 | AK: Fix broken #include statement | Andreas Kling | |
2020-02-09 | AK: Apply changes for the Bootstrapper environment | Liav A | |
2020-01-18 | Meta: Add license header to source files | Andreas Kling | |
As suggested by Joshua, this commit adds the 2-clause BSD license as a comment block to the top of every source file. For the first pass, I've just added myself for simplicity. I encourage everyone to add themselves as copyright holders of any file they've added or modified in some significant way. If I've added myself in error somewhere, feel free to replace it with the appropriate copyright holder instead. Going forward, all new source files should include a license header. | |||
2019-07-21 | Kernel+LibC: Add a dbgputstr() syscall for sending strings to debug output. | Andreas Kling | |
This is very handy for the DebugLogStream implementation, among others. :^) | |||
2019-06-22 | LibHTML: Make it possible to build LibHTML on the host. | Andreas Kling | |
- "make" builds the normal Serenity libhtml.a - "make -f Makefile.host" builds a test program for the host machine. | |||
2019-06-18 | AK: Including <AK/kstdio.h> should pull in <stdio.h> etc on host builds. | Andreas Kling | |
2019-01-17 | Get rid of #ifdef SERENITY. We're past that phase of bootstrapping. | Andreas Kling | |
2018-10-22 | Import very modest Userland. | Andreas Kling | |
2018-10-17 | Make VFS host build work again. | Andreas Kling | |
2018-10-16 | Add the basic character devices to kernel. | Andreas Kling | |