ladybird/Kernel
Andreas Kling c02c9880b6 AK: Add Eternal<T> and use it in various places.
This is useful for static locals that never need to be destroyed:

Thing& Thing::the()
{
    static Eternal<Thing> the;
    return the;
}

The object will be allocated in data segment memory and will never have
its destructor invoked.
2019-04-03 16:52:25 +02:00
..
Boot Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
Devices Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
ELF Kernel: Move ELF-related files into Kernel/ELF/. 2019-04-03 12:30:04 +02:00
FileSystem Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
Net AK: Add Eternal<T> and use it in various places. 2019-04-03 16:52:25 +02:00
TTY Kernel: Move devices into Kernel/Devices/. 2019-04-03 12:36:40 +02:00
VM Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
.bochsrc Give the emulator testing environments 128 MB of RAM. 2019-03-27 13:02:29 +01:00
.gitignore Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
Alarm.h Kernel: Oops, forgot to add Alarm.h earlier. Here it is. 2019-03-20 18:16:15 +01:00
Assertions.h Kernel: Remove unneeded kassert.h. 2019-04-03 12:51:10 +02:00
CMOS.cpp Make bash-2.05b build with minimal changes. 2018-11-17 00:14:07 +01:00
CMOS.h Make bash-2.05b build with minimal changes. 2018-11-17 00:14:07 +01:00
Console.cpp Kernel: Make syscalls that take a buffer size use ssize_t instead of size_t. 2019-02-25 21:21:12 +01:00
Console.h Kernel: Move devices into Kernel/Devices/. 2019-04-03 12:36:40 +02:00
DoubleBuffer.cpp Kernel: DoubleBuffer can return early if read/write is called with !size. 2019-03-20 02:12:40 +01:00
DoubleBuffer.h Move Lock from AK to Kernel, since it only works inside the kernel. 2019-03-16 13:18:22 +01:00
FIFO.cpp Kernel: Make syscalls that take a buffer size use ssize_t instead of size_t. 2019-02-25 21:21:12 +01:00
FIFO.h Kernel: Make syscalls that take a buffer size use ssize_t instead of size_t. 2019-02-25 21:21:12 +01:00
FileDescriptor.cpp Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
FileDescriptor.h Kernel: Move FS-related files into Kernel/FileSystem/ 2019-04-03 12:25:24 +02:00
i386.cpp Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
i386.h Stopwatch: Print the result in decimal instead of hexadecimal. 2019-03-30 04:20:08 +01:00
i8253.cpp Kernel: Do timekeeping manually instead of asking the RTC all the time. 2019-03-25 02:06:57 +01:00
i8253.h Kernel: Do timekeeping manually instead of asking the RTC all the time. 2019-03-25 02:06:57 +01:00
init.cpp Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
IO.h Kernel: Much improved BochsVGA (BXVGA) support. 2019-02-06 10:17:26 +01:00
IRQHandler.cpp More coding style changes. 2018-12-03 00:39:25 +01:00
IRQHandler.h More coding style changes. 2018-12-03 00:39:25 +01:00
KeyCode.h Detect the "Logo" (Windows/Apple/whatever) key and use it for window resize. 2019-03-03 12:56:48 +01:00
kmalloc.cpp Kernel: Tidy up kmalloc.cpp a tiny bit. 2019-04-03 14:41:40 +02:00
kmalloc.h Use modern C++ attributes instead of __attribute__ voodoo. 2019-02-15 12:30:48 +01:00
kprintf.cpp Kernel: Introduce threads, and refactor everything in support of it. 2019-03-23 22:03:17 +01:00
kprintf.h Use modern C++ attributes instead of __attribute__ voodoo. 2019-02-15 12:30:48 +01:00
KResult.h Kernel: Port more code to KResult and KResultOr<T>. 2019-03-06 22:14:31 +01:00
kstdio.h Fix Userland build. 2019-01-13 04:31:16 +01:00
KSyms.cpp Kernel: Introduce threads, and refactor everything in support of it. 2019-03-23 22:03:17 +01:00
KSyms.h Kernel: Make dump_backtrace() kinda sorta work. 2019-02-24 14:51:48 +01:00
ktime.h Fix some minor build warnings. 2018-10-17 16:48:43 +02:00
linker.ld Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
LocalSocket.cpp Kernel: Move FS-related files into Kernel/FileSystem/ 2019-04-03 12:25:24 +02:00
LocalSocket.h Kernel: Accepting sockets don't need to retain the client sockets. 2019-03-20 02:48:02 +01:00
Lock.h Kernel: Add a blunt big process lock. 2019-04-01 20:04:29 +02:00
makeall.sh LibC: Run constructors on process startup. 2019-03-27 12:48:21 +01:00
Makefile Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
mkmap.sh Omit duplicate lines from the ksyms map. 2018-12-03 02:23:49 +01:00
MousePacket.h Kernel+WindowServer: Move mouse input signal parsing to kernel driver. 2019-03-05 14:01:03 +01:00
PCI.cpp Kernel: More work on bringing up E1000 support. 2019-03-11 11:11:29 +01:00
PCI.h Kernel: More work on bringing up E1000 support. 2019-03-11 11:11:29 +01:00
PIC.cpp Big, possibly complete sweep of naming changes. 2019-01-31 17:31:23 +01:00
PIC.h Big, possibly complete sweep of naming changes. 2019-01-31 17:31:23 +01:00
Process.cpp Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
Process.h Kernel: Move TTY-related files into Kernel/TTY/. 2019-04-03 12:28:45 +02:00
RTC.cpp Kernel: Fix wrong calculation of current Unix timestamp. 2019-02-19 02:39:18 +01:00
RTC.h WindowServer: Put a clock in the top right corner of the screen. 2019-02-13 09:27:08 +01:00
run Kernel: Use a multiboot header instead of a convoluted two-part bootloader. 2019-04-01 21:43:07 +02:00
Scheduler.cpp Kernel: Do timekeeping manually instead of asking the RTC all the time. 2019-03-25 02:06:57 +01:00
Scheduler.h Kernel: Introduce threads, and refactor everything in support of it. 2019-03-23 22:03:17 +01:00
Socket.cpp Kernel: Move networking related files into Kernel/Net/. 2019-04-02 19:54:38 +02:00
Socket.h Kernel: Accepting sockets don't need to retain the client sockets. 2019-03-20 02:48:02 +01:00
StdLib.cpp AK: Add Eternal<T> and use it in various places. 2019-04-03 16:52:25 +02:00
StdLib.h Kernel: Introduce threads, and refactor everything in support of it. 2019-03-23 22:03:17 +01:00
sync.sh Kernel: Move FS-related files into Kernel/FileSystem/ 2019-04-03 12:25:24 +02:00
Syscall.cpp Kernel: Add a blunt big process lock. 2019-04-01 20:04:29 +02:00
Syscall.h LibGUI+Kernel: Add a GLock class (userspace mutex.) 2019-03-25 13:03:49 +01:00
system.h Kernel: Remove ancient nprocess and nblocked globals. 2019-04-03 13:05:20 +02:00
Thread.cpp Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
Thread.h Kernel: Save/restore the SSE context on context switch. 2019-03-27 15:27:45 +01:00
TSS.h Use modern C++ attributes instead of __attribute__ voodoo. 2019-02-15 12:30:48 +01:00
types.h More work on IPv4 sockets and /bin/ping. 2019-03-13 03:26:01 +01:00
UnixTypes.h Kernel: Remove Limits.h 2019-04-03 13:18:42 +02:00