├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── c-cpp.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── bootstrap.yml ├── bootstrap ├── cross-file.ini ├── sys-apps.yml ├── sys-kernel.yml ├── sys-libs.yml ├── sys-modules.yml └── sys-tools.yml ├── license ├── makefile ├── meta ├── images │ └── laptop.png └── screenshots │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png ├── patches ├── automake-v1.16 │ └── automake-v1.16.patch ├── bash │ └── bash.patch ├── binutils │ └── binutils.patch ├── coreutils │ └── coreutils.patch ├── curl │ └── curl.patch ├── gcc │ └── gcc.patch ├── libdrm │ └── libdrm.patch ├── libressl │ └── libressl.patch ├── ncurses │ └── ncurses.patch └── nyancat │ └── nyancat.patch ├── readme.md ├── sources ├── core │ ├── apps │ │ ├── datetime │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── desktop │ │ │ ├── icons │ │ │ │ ├── bash.tga │ │ │ │ ├── default.tga │ │ │ │ ├── doom.tga │ │ │ │ ├── explorer.tga │ │ │ │ ├── icons.json │ │ │ │ ├── lock.tga │ │ │ │ ├── lua.tga │ │ │ │ ├── nyancat.tga │ │ │ │ ├── reboot.tga │ │ │ │ ├── shutdown.tga │ │ │ │ ├── store-ui.tga │ │ │ │ ├── weather-ui.tga │ │ │ │ └── welcome.tga │ │ │ ├── res │ │ │ │ ├── default_font.ttf │ │ │ │ ├── default_wallpaper.jpg │ │ │ │ └── desktop.json │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── explorer │ │ │ ├── res │ │ │ │ ├── default.tga │ │ │ │ ├── default_font.ttf │ │ │ │ ├── default_wallpaper.jpg │ │ │ │ ├── directory.tga │ │ │ │ ├── explorer.json │ │ │ │ ├── file.tga │ │ │ │ ├── image.tga │ │ │ │ ├── json.tga │ │ │ │ ├── text.tga │ │ │ │ └── ttf.tga │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── image-reader │ │ │ ├── res │ │ │ │ ├── default_font.ttf │ │ │ │ ├── default_wallpaper.jpg │ │ │ │ └── image-reader.json │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── init │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── ip │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── llm │ │ │ ├── docs │ │ │ │ └── jan.png │ │ │ ├── readme.md │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── lock │ │ │ ├── res │ │ │ │ ├── default_font.ttf │ │ │ │ ├── default_wallpaper.jpg │ │ │ │ └── lock.json │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── lua │ │ │ ├── .gitignore │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── reboot │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── shutdown │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── store-ui │ │ │ ├── res │ │ │ │ ├── default_font.ttf │ │ │ │ ├── default_wallpaper.jpg │ │ │ │ └── store-ui.json │ │ │ ├── source │ │ │ │ ├── apps │ │ │ │ │ ├── apps.c │ │ │ │ │ └── apps.h │ │ │ │ ├── core │ │ │ │ │ └── core.c │ │ │ │ ├── deps │ │ │ │ │ ├── deps.c │ │ │ │ │ └── deps.h │ │ │ │ ├── download │ │ │ │ │ ├── download.c │ │ │ │ │ └── download.h │ │ │ │ ├── icon │ │ │ │ │ ├── icon.c │ │ │ │ │ └── icon.h │ │ │ │ ├── install │ │ │ │ │ ├── install.c │ │ │ │ │ └── install.h │ │ │ │ ├── launch │ │ │ │ │ ├── launch.c │ │ │ │ │ └── launch.h │ │ │ │ ├── remove │ │ │ │ │ ├── remove.c │ │ │ │ │ └── remove.h │ │ │ │ ├── untar │ │ │ │ │ ├── untar.c │ │ │ │ │ └── untar.h │ │ │ │ └── update │ │ │ │ │ ├── update.c │ │ │ │ │ └── update.h │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── text-reader │ │ │ ├── res │ │ │ │ ├── default_bitmap_font.pcf │ │ │ │ ├── default_font.ttf │ │ │ │ ├── default_wallpaper.jpg │ │ │ │ └── text-reader.json │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── weather-ui │ │ │ ├── res │ │ │ │ ├── clear.jpg │ │ │ │ ├── cloudy.jpg │ │ │ │ ├── default_font.ttf │ │ │ │ ├── default_wallpaper.jpg │ │ │ │ ├── mist.jpg │ │ │ │ ├── overcast.jpg │ │ │ │ ├── partly_cloudy.jpg │ │ │ │ ├── sunny.jpg │ │ │ │ └── weather-ui.json │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ ├── weather │ │ │ ├── source │ │ │ │ └── core │ │ │ │ │ └── core.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ └── welcome │ │ │ ├── res │ │ │ ├── welcome.ttf │ │ │ ├── welcome0.jpg │ │ │ ├── welcome1.jpg │ │ │ ├── welcome2.jpg │ │ │ └── welcome3.jpg │ │ │ ├── source │ │ │ └── core │ │ │ │ └── core.c │ │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ ├── kernel │ │ ├── source │ │ │ ├── arch │ │ │ │ ├── aarch64 │ │ │ │ │ ├── arch.c │ │ │ │ │ ├── impl │ │ │ │ │ │ └── pmm.h │ │ │ │ │ ├── panic.c │ │ │ │ │ ├── serial.c │ │ │ │ │ └── vmm.c │ │ │ │ ├── amd64 │ │ │ │ │ ├── acpi.c │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── apic.c │ │ │ │ │ ├── apic.h │ │ │ │ │ ├── arch.c │ │ │ │ │ ├── asm.h │ │ │ │ │ ├── boot.h │ │ │ │ │ ├── context.c │ │ │ │ │ ├── context.h │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── cpu.inc │ │ │ │ │ ├── cpu.s │ │ │ │ │ ├── gdt.c │ │ │ │ │ ├── gdt.h │ │ │ │ │ ├── gdt.s │ │ │ │ │ ├── hpet.c │ │ │ │ │ ├── hpet.h │ │ │ │ │ ├── idt.c │ │ │ │ │ ├── idt.h │ │ │ │ │ ├── idt.s │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── arch.h │ │ │ │ │ │ ├── arguments.h │ │ │ │ │ │ ├── context.h │ │ │ │ │ │ ├── pmm.h │ │ │ │ │ │ ├── scheduler.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ └── vmm.h │ │ │ │ │ ├── interrupts.c │ │ │ │ │ ├── interrupts.h │ │ │ │ │ ├── interrupts.s │ │ │ │ │ ├── io.h │ │ │ │ │ ├── panic.c │ │ │ │ │ ├── scheduler.c │ │ │ │ │ ├── serial.c │ │ │ │ │ ├── simd.c │ │ │ │ │ ├── simd.h │ │ │ │ │ ├── smp.c │ │ │ │ │ ├── smp.h │ │ │ │ │ ├── smp.s │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── syscall.s │ │ │ │ │ ├── time.c │ │ │ │ │ ├── vmm.c │ │ │ │ │ └── vmm.h │ │ │ │ └── include.h │ │ │ ├── boot │ │ │ │ ├── limine.h │ │ │ │ └── limine │ │ │ │ │ ├── aarch64 │ │ │ │ │ └── vmm.c │ │ │ │ │ ├── amd64 │ │ │ │ │ ├── acpi.c │ │ │ │ │ └── vmm.c │ │ │ │ │ ├── graphics.c │ │ │ │ │ ├── initrd.c │ │ │ │ │ ├── memory.c │ │ │ │ │ └── pmm.c │ │ │ ├── global │ │ │ │ ├── apps.c │ │ │ │ ├── apps.h │ │ │ │ ├── console.h │ │ │ │ ├── console │ │ │ │ │ ├── ansi.c │ │ │ │ │ ├── ansi.h │ │ │ │ │ └── console.c │ │ │ │ ├── devfs.c │ │ │ │ ├── devfs.h │ │ │ │ ├── dir.c │ │ │ │ ├── dir.h │ │ │ │ ├── elf.h │ │ │ │ ├── elf_loader.c │ │ │ │ ├── elf_loader.h │ │ │ │ ├── exec.c │ │ │ │ ├── exec.h │ │ │ │ ├── file.c │ │ │ │ ├── file.h │ │ │ │ ├── heap.c │ │ │ │ ├── heap.h │ │ │ │ ├── hw_interrupt.c │ │ │ │ ├── hw_interrupt.h │ │ │ │ ├── ksym.c │ │ │ │ ├── ksym.h │ │ │ │ ├── mm.c │ │ │ │ ├── mm.h │ │ │ │ ├── modules.c │ │ │ │ ├── modules.h │ │ │ │ ├── pmm.c │ │ │ │ ├── pmm.h │ │ │ │ ├── resources.c │ │ │ │ ├── resources.h │ │ │ │ ├── scheduler.c │ │ │ │ ├── scheduler.h │ │ │ │ ├── socket.c │ │ │ │ ├── socket.h │ │ │ │ ├── syscall.c │ │ │ │ ├── syscall.h │ │ │ │ ├── time.c │ │ │ │ ├── time.h │ │ │ │ ├── vfs.c │ │ │ │ └── vfs.h │ │ │ ├── impl │ │ │ │ ├── arch.h │ │ │ │ ├── boot.h │ │ │ │ ├── context.h │ │ │ │ ├── graphics.h │ │ │ │ ├── hw_interrupt.h │ │ │ │ ├── initrd.h │ │ │ │ ├── memory.h │ │ │ │ ├── panic.h │ │ │ │ ├── serial.h │ │ │ │ ├── time.h │ │ │ │ └── vmm.h │ │ │ ├── kernel.c │ │ │ ├── kernel.h │ │ │ ├── lib │ │ │ │ ├── arguments.h │ │ │ │ ├── assert.c │ │ │ │ ├── assert.h │ │ │ │ ├── bitmap.c │ │ │ │ ├── bitmap.h │ │ │ │ ├── guid.h │ │ │ │ ├── hashmap.h │ │ │ │ ├── hashmap │ │ │ │ │ ├── hashmap.c │ │ │ │ │ └── khash.h │ │ │ │ ├── lock.c │ │ │ │ ├── lock.h │ │ │ │ ├── log.c │ │ │ │ ├── log.h │ │ │ │ ├── math.h │ │ │ │ ├── memory.c │ │ │ │ ├── memory.h │ │ │ │ ├── modules │ │ │ │ │ ├── devfs.h │ │ │ │ │ ├── dir.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── hid.h │ │ │ │ │ ├── net.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── storage.h │ │ │ │ │ ├── time.h │ │ │ │ │ └── vfs.h │ │ │ │ ├── net.h │ │ │ │ ├── printf.c │ │ │ │ ├── printf.h │ │ │ │ ├── string.h │ │ │ │ ├── time.c │ │ │ │ ├── time.h │ │ │ │ ├── vector.c │ │ │ │ └── vector.h │ │ │ └── parameters.h │ │ └── target │ │ │ ├── .gitignore │ │ │ ├── limine │ │ │ ├── aarch64 │ │ │ │ ├── kernel.ld │ │ │ │ └── makefile │ │ │ ├── amd64 │ │ │ │ ├── kernel.ld │ │ │ │ └── makefile │ │ │ └── makefile.cfg │ │ │ └── opensbi │ │ │ ├── makefile.cfg │ │ │ └── riscv64 │ │ │ ├── kernel.ld │ │ │ └── makefile │ ├── libs │ │ ├── kot-graphics │ │ │ ├── source │ │ │ │ ├── font.h │ │ │ │ ├── font │ │ │ │ │ └── font.c │ │ │ │ ├── image.h │ │ │ │ ├── image │ │ │ │ │ └── image.c │ │ │ │ ├── utils.h │ │ │ │ └── utils │ │ │ │ │ └── utils.c │ │ │ └── target │ │ │ │ └── amd64 │ │ │ │ ├── .gitignore │ │ │ │ └── makefile │ │ └── mlibc │ │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── abidiff.yml │ │ │ │ ├── ci.yml │ │ │ │ ├── detect-bad-ifs.yml │ │ │ │ └── fixups.yml │ │ │ ├── .gitignore │ │ │ ├── ABI_BREAKS.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── RELEASE_PROCEDURE.md │ │ │ ├── abis │ │ │ ├── aero │ │ │ │ └── auxv.h │ │ │ ├── dripos │ │ │ │ ├── auxv.h │ │ │ │ └── errno.h │ │ │ ├── ironclad │ │ │ │ ├── auxv.h │ │ │ │ ├── fcntl.h │ │ │ │ └── seek-whence.h │ │ │ ├── lemon │ │ │ │ └── auxv.h │ │ │ ├── linux │ │ │ │ ├── access.h │ │ │ │ ├── auxv.h │ │ │ │ ├── blkcnt_t.h │ │ │ │ ├── blksize_t.h │ │ │ │ ├── clockid_t.h │ │ │ │ ├── dev_t.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ ├── gid_t.h │ │ │ │ ├── in.h │ │ │ │ ├── ino_t.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── limits.h │ │ │ │ ├── mode_t.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── nlink_t.h │ │ │ │ ├── packet.h │ │ │ │ ├── pid_t.h │ │ │ │ ├── poll.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── reboot.h │ │ │ │ ├── resource.h │ │ │ │ ├── seek-whence.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── socklen_t.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── statvfs.h │ │ │ │ ├── suseconds_t.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── uid_t.h │ │ │ │ ├── utsname.h │ │ │ │ ├── vm-flags.h │ │ │ │ ├── vt.h │ │ │ │ ├── wait.h │ │ │ │ └── xattr.h │ │ │ ├── managarm │ │ │ │ └── auxv.h │ │ │ └── mlibc │ │ │ │ ├── access.h │ │ │ │ ├── blkcnt_t.h │ │ │ │ ├── blksize_t.h │ │ │ │ ├── clockid_t.h │ │ │ │ ├── dev_t.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── gid_t.h │ │ │ │ ├── in.h │ │ │ │ ├── ino_t.h │ │ │ │ ├── inotify.h │ │ │ │ ├── limits.h │ │ │ │ ├── mode_t.h │ │ │ │ ├── nlink_t.h │ │ │ │ ├── packet.h │ │ │ │ ├── pid_t.h │ │ │ │ ├── poll.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── resource.h │ │ │ │ ├── seek-whence.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── stat.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── uid_t.h │ │ │ │ ├── utsname.h │ │ │ │ ├── vm-flags.h │ │ │ │ └── wait.h │ │ │ ├── ci │ │ │ ├── abidiff_suppress.ini │ │ │ ├── aero.cross-file │ │ │ ├── bootstrap.yml │ │ │ ├── dripos.cross-file │ │ │ ├── ironclad.cross-file │ │ │ ├── kot.cross-file │ │ │ ├── lemon.cross-file │ │ │ ├── linux-aarch64.cross-file │ │ │ ├── linux-riscv64.cross-file │ │ │ ├── linux-x86_64.cross-file │ │ │ └── lyre.cross-file │ │ │ ├── dummy-libs │ │ │ ├── libcrypt │ │ │ │ └── src │ │ │ │ │ └── dummy.cpp │ │ │ ├── libdl │ │ │ │ └── src │ │ │ │ │ └── dummy.cpp │ │ │ ├── libm │ │ │ │ └── src │ │ │ │ │ └── dummy.cpp │ │ │ ├── libpthread │ │ │ │ └── src │ │ │ │ │ └── dummy.cpp │ │ │ ├── libresolv │ │ │ │ └── src │ │ │ │ │ └── dummy.cpp │ │ │ ├── librt │ │ │ │ └── src │ │ │ │ │ └── dummy.cpp │ │ │ └── libutil │ │ │ │ └── src │ │ │ │ └── dummy.cpp │ │ │ ├── internal-config.h.in │ │ │ ├── meson.build │ │ │ ├── meson_options.txt │ │ │ ├── mlibc-config.h.in │ │ │ ├── options │ │ │ ├── ansi │ │ │ │ ├── generic │ │ │ │ │ ├── assert-stubs.cpp │ │ │ │ │ ├── complex-stubs.cpp │ │ │ │ │ ├── complex │ │ │ │ │ │ ├── cabs.c │ │ │ │ │ │ ├── cabsf.c │ │ │ │ │ │ ├── cacos.c │ │ │ │ │ │ ├── cacosf.c │ │ │ │ │ │ ├── cacosh.c │ │ │ │ │ │ ├── cacoshf.c │ │ │ │ │ │ ├── carg.c │ │ │ │ │ │ ├── cargf.c │ │ │ │ │ │ ├── casin.c │ │ │ │ │ │ ├── casinf.c │ │ │ │ │ │ ├── casinh.c │ │ │ │ │ │ ├── casinhf.c │ │ │ │ │ │ ├── catan.c │ │ │ │ │ │ ├── catanf.c │ │ │ │ │ │ ├── catanh.c │ │ │ │ │ │ ├── catanhf.c │ │ │ │ │ │ ├── ccos.c │ │ │ │ │ │ ├── ccosf.c │ │ │ │ │ │ ├── ccosh.c │ │ │ │ │ │ ├── ccoshf.c │ │ │ │ │ │ ├── cephes_subr.c │ │ │ │ │ │ ├── cephes_subr.h │ │ │ │ │ │ ├── cephes_subrf.c │ │ │ │ │ │ ├── cephes_subrf.h │ │ │ │ │ │ ├── cexp.c │ │ │ │ │ │ ├── cexpf.c │ │ │ │ │ │ ├── cimag.c │ │ │ │ │ │ ├── cimagf.c │ │ │ │ │ │ ├── clog.c │ │ │ │ │ │ ├── clogf.c │ │ │ │ │ │ ├── conj.c │ │ │ │ │ │ ├── conjf.c │ │ │ │ │ │ ├── cpow.c │ │ │ │ │ │ ├── cpowf.c │ │ │ │ │ │ ├── cproj.c │ │ │ │ │ │ ├── cprojf.c │ │ │ │ │ │ ├── creal.c │ │ │ │ │ │ ├── crealf.c │ │ │ │ │ │ ├── csin.c │ │ │ │ │ │ ├── csinf.c │ │ │ │ │ │ ├── csinh.c │ │ │ │ │ │ ├── csinhf.c │ │ │ │ │ │ ├── csqrt.c │ │ │ │ │ │ ├── csqrtf.c │ │ │ │ │ │ ├── ctan.c │ │ │ │ │ │ ├── ctanf.c │ │ │ │ │ │ ├── ctanh.c │ │ │ │ │ │ ├── ctanhf.c │ │ │ │ │ │ └── fdlibm.h │ │ │ │ │ ├── ctype-stubs.cpp │ │ │ │ │ ├── environment.cpp │ │ │ │ │ ├── errno-stubs.cpp │ │ │ │ │ ├── fenv-stubs.cpp │ │ │ │ │ ├── file-io.cpp │ │ │ │ │ ├── inttypes-stubs.cpp │ │ │ │ │ ├── locale-stubs.cpp │ │ │ │ │ ├── math-stubs.ignored-cpp │ │ │ │ │ ├── signal-stubs.cpp │ │ │ │ │ ├── stdio-stubs.cpp │ │ │ │ │ ├── stdlib-stubs.cpp │ │ │ │ │ ├── string-stubs.cpp │ │ │ │ │ ├── time-stubs.cpp │ │ │ │ │ ├── wchar-stubs.cpp │ │ │ │ │ └── wctype.cpp │ │ │ │ ├── include │ │ │ │ │ ├── alloca.h │ │ │ │ │ ├── assert.h │ │ │ │ │ ├── bits │ │ │ │ │ │ └── ansi │ │ │ │ │ │ │ ├── fenv.h │ │ │ │ │ │ │ ├── time_t.h │ │ │ │ │ │ │ └── timespec.h │ │ │ │ │ ├── complex.h │ │ │ │ │ ├── ctype.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── inttypes.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── locale.h │ │ │ │ │ ├── math.h │ │ │ │ │ ├── mlibc │ │ │ │ │ │ ├── ansi-sysdeps.hpp │ │ │ │ │ │ ├── environment.hpp │ │ │ │ │ │ └── file-io.hpp │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── wchar.h │ │ │ │ │ └── wctype.h │ │ │ │ ├── meson.build │ │ │ │ └── musl-generic-math │ │ │ │ │ ├── __cos.c │ │ │ │ │ ├── __cosdf.c │ │ │ │ │ ├── __cosl.c │ │ │ │ │ ├── __expo2.c │ │ │ │ │ ├── __expo2f.c │ │ │ │ │ ├── __fpclassify.c │ │ │ │ │ ├── __fpclassifyf.c │ │ │ │ │ ├── __fpclassifyl.c │ │ │ │ │ ├── __invtrigl.c │ │ │ │ │ ├── __invtrigl.h │ │ │ │ │ ├── __polevll.c │ │ │ │ │ ├── __rem_pio2.c │ │ │ │ │ ├── __rem_pio2_large.c │ │ │ │ │ ├── __rem_pio2f.c │ │ │ │ │ ├── __rem_pio2l.c │ │ │ │ │ ├── __signbit.c │ │ │ │ │ ├── __signbitf.c │ │ │ │ │ ├── __signbitl.c │ │ │ │ │ ├── __sin.c │ │ │ │ │ ├── __sindf.c │ │ │ │ │ ├── __sinl.c │ │ │ │ │ ├── __tan.c │ │ │ │ │ ├── __tandf.c │ │ │ │ │ ├── __tanl.c │ │ │ │ │ ├── acos.c │ │ │ │ │ ├── acosf.c │ │ │ │ │ ├── acosh.c │ │ │ │ │ ├── acoshf.c │ │ │ │ │ ├── acoshl.c │ │ │ │ │ ├── acosl.c │ │ │ │ │ ├── asin.c │ │ │ │ │ ├── asinf.c │ │ │ │ │ ├── asinh.c │ │ │ │ │ ├── asinhf.c │ │ │ │ │ ├── asinhl.c │ │ │ │ │ ├── asinl.c │ │ │ │ │ ├── atan.c │ │ │ │ │ ├── atan2.c │ │ │ │ │ ├── atan2f.c │ │ │ │ │ ├── atan2l.c │ │ │ │ │ ├── atanf.c │ │ │ │ │ ├── atanh.c │ │ │ │ │ ├── atanhf.c │ │ │ │ │ ├── atanhl.c │ │ │ │ │ ├── atanl.c │ │ │ │ │ ├── cbrt.c │ │ │ │ │ ├── cbrtf.c │ │ │ │ │ ├── cbrtl.c │ │ │ │ │ ├── ceil.c │ │ │ │ │ ├── ceilf.c │ │ │ │ │ ├── ceill.c │ │ │ │ │ ├── copysign.c │ │ │ │ │ ├── copysignf.c │ │ │ │ │ ├── copysignl.c │ │ │ │ │ ├── cos.c │ │ │ │ │ ├── cosf.c │ │ │ │ │ ├── cosh.c │ │ │ │ │ ├── coshf.c │ │ │ │ │ ├── coshl.c │ │ │ │ │ ├── cosl.c │ │ │ │ │ ├── erf.c │ │ │ │ │ ├── erff.c │ │ │ │ │ ├── erfl.c │ │ │ │ │ ├── exp.c │ │ │ │ │ ├── exp10.c │ │ │ │ │ ├── exp10f.c │ │ │ │ │ ├── exp10l.c │ │ │ │ │ ├── exp2.c │ │ │ │ │ ├── exp2f.c │ │ │ │ │ ├── exp2l.c │ │ │ │ │ ├── expf.c │ │ │ │ │ ├── expl.c │ │ │ │ │ ├── expm1.c │ │ │ │ │ ├── expm1f.c │ │ │ │ │ ├── expm1l.c │ │ │ │ │ ├── fabs.c │ │ │ │ │ ├── fabsf.c │ │ │ │ │ ├── fabsl.c │ │ │ │ │ ├── fdim.c │ │ │ │ │ ├── fdimf.c │ │ │ │ │ ├── fdiml.c │ │ │ │ │ ├── finite.c │ │ │ │ │ ├── finitef.c │ │ │ │ │ ├── floor.c │ │ │ │ │ ├── floorf.c │ │ │ │ │ ├── floorl.c │ │ │ │ │ ├── fma.c │ │ │ │ │ ├── fmaf.c │ │ │ │ │ ├── fmal.c │ │ │ │ │ ├── fmax.c │ │ │ │ │ ├── fmaxf.c │ │ │ │ │ ├── fmaxl.c │ │ │ │ │ ├── fmin.c │ │ │ │ │ ├── fminf.c │ │ │ │ │ ├── fminl.c │ │ │ │ │ ├── fmod.c │ │ │ │ │ ├── fmodf.c │ │ │ │ │ ├── fmodl.c │ │ │ │ │ ├── frexp.c │ │ │ │ │ ├── frexpf.c │ │ │ │ │ ├── frexpl.c │ │ │ │ │ ├── hypot.c │ │ │ │ │ ├── hypotf.c │ │ │ │ │ ├── hypotl.c │ │ │ │ │ ├── ilogb.c │ │ │ │ │ ├── ilogbf.c │ │ │ │ │ ├── ilogbl.c │ │ │ │ │ ├── j0.c │ │ │ │ │ ├── j0f.c │ │ │ │ │ ├── j1.c │ │ │ │ │ ├── j1f.c │ │ │ │ │ ├── jn.c │ │ │ │ │ ├── jnf.c │ │ │ │ │ ├── ldexp.c │ │ │ │ │ ├── ldexpf.c │ │ │ │ │ ├── ldexpl.c │ │ │ │ │ ├── lgamma.c │ │ │ │ │ ├── lgamma_r.c │ │ │ │ │ ├── lgammaf.c │ │ │ │ │ ├── lgammaf_r.c │ │ │ │ │ ├── lgammal.c │ │ │ │ │ ├── libm.h │ │ │ │ │ ├── llrint.c │ │ │ │ │ ├── llrintf.c │ │ │ │ │ ├── llrintl.c │ │ │ │ │ ├── llround.c │ │ │ │ │ ├── llroundf.c │ │ │ │ │ ├── llroundl.c │ │ │ │ │ ├── log.c │ │ │ │ │ ├── log10.c │ │ │ │ │ ├── log10f.c │ │ │ │ │ ├── log10l.c │ │ │ │ │ ├── log1p.c │ │ │ │ │ ├── log1pf.c │ │ │ │ │ ├── log1pl.c │ │ │ │ │ ├── log2.c │ │ │ │ │ ├── log2f.c │ │ │ │ │ ├── log2l.c │ │ │ │ │ ├── logb.c │ │ │ │ │ ├── logbf.c │ │ │ │ │ ├── logbl.c │ │ │ │ │ ├── logf.c │ │ │ │ │ ├── logl.c │ │ │ │ │ ├── lrint.c │ │ │ │ │ ├── lrintf.c │ │ │ │ │ ├── lrintl.c │ │ │ │ │ ├── lround.c │ │ │ │ │ ├── lroundf.c │ │ │ │ │ ├── lroundl.c │ │ │ │ │ ├── modf.c │ │ │ │ │ ├── modff.c │ │ │ │ │ ├── modfl.c │ │ │ │ │ ├── nan.c │ │ │ │ │ ├── nanf.c │ │ │ │ │ ├── nanl.c │ │ │ │ │ ├── nearbyint.c │ │ │ │ │ ├── nearbyintf.c │ │ │ │ │ ├── nearbyintl.c │ │ │ │ │ ├── nextafter.c │ │ │ │ │ ├── nextafterf.c │ │ │ │ │ ├── nextafterl.c │ │ │ │ │ ├── nexttoward.c │ │ │ │ │ ├── nexttowardf.c │ │ │ │ │ ├── nexttowardl.c │ │ │ │ │ ├── pow.c │ │ │ │ │ ├── powf.c │ │ │ │ │ ├── powl.c │ │ │ │ │ ├── remainder.c │ │ │ │ │ ├── remainderf.c │ │ │ │ │ ├── remainderl.c │ │ │ │ │ ├── remquo.c │ │ │ │ │ ├── remquof.c │ │ │ │ │ ├── remquol.c │ │ │ │ │ ├── rint.c │ │ │ │ │ ├── rintf.c │ │ │ │ │ ├── rintl.c │ │ │ │ │ ├── round.c │ │ │ │ │ ├── roundf.c │ │ │ │ │ ├── roundl.c │ │ │ │ │ ├── scalb.c │ │ │ │ │ ├── scalbf.c │ │ │ │ │ ├── scalbln.c │ │ │ │ │ ├── scalblnf.c │ │ │ │ │ ├── scalblnl.c │ │ │ │ │ ├── scalbn.c │ │ │ │ │ ├── scalbnf.c │ │ │ │ │ ├── scalbnl.c │ │ │ │ │ ├── signgam.c │ │ │ │ │ ├── significand.c │ │ │ │ │ ├── significandf.c │ │ │ │ │ ├── sin.c │ │ │ │ │ ├── sincos.c │ │ │ │ │ ├── sincosf.c │ │ │ │ │ ├── sincosl.c │ │ │ │ │ ├── sinf.c │ │ │ │ │ ├── sinh.c │ │ │ │ │ ├── sinhf.c │ │ │ │ │ ├── sinhl.c │ │ │ │ │ ├── sinl.c │ │ │ │ │ ├── sqrt.c │ │ │ │ │ ├── sqrtf.c │ │ │ │ │ ├── sqrtl.c │ │ │ │ │ ├── tan.c │ │ │ │ │ ├── tanf.c │ │ │ │ │ ├── tanh.c │ │ │ │ │ ├── tanhf.c │ │ │ │ │ ├── tanhl.c │ │ │ │ │ ├── tanl.c │ │ │ │ │ ├── tgamma.c │ │ │ │ │ ├── tgammaf.c │ │ │ │ │ ├── tgammal.c │ │ │ │ │ ├── trunc.c │ │ │ │ │ ├── truncf.c │ │ │ │ │ ├── truncl.c │ │ │ │ │ └── weak_alias.h │ │ │ ├── bsd │ │ │ │ ├── generic │ │ │ │ │ ├── arpa-nameser-stubs.cpp │ │ │ │ │ ├── ether.cpp │ │ │ │ │ └── getopt.cpp │ │ │ │ ├── include │ │ │ │ │ ├── arpa │ │ │ │ │ │ ├── nameser.h │ │ │ │ │ │ ├── nameser_compat.h │ │ │ │ │ │ └── telnet.h │ │ │ │ │ ├── bits │ │ │ │ │ │ └── bsd │ │ │ │ │ │ │ └── bsd_unistd.h │ │ │ │ │ ├── fstab.h │ │ │ │ │ ├── mlibc │ │ │ │ │ │ └── bsd-sysdeps.hpp │ │ │ │ │ ├── netinet │ │ │ │ │ │ └── ether.h │ │ │ │ │ └── sys │ │ │ │ │ │ └── queue.h │ │ │ │ └── meson.build │ │ │ ├── crypt │ │ │ │ ├── generic │ │ │ │ │ └── crypt-stubs.cpp │ │ │ │ ├── include │ │ │ │ │ └── crypt.h │ │ │ │ └── meson.build │ │ │ ├── elf │ │ │ │ ├── generic │ │ │ │ │ ├── phdr.cpp │ │ │ │ │ └── startup.cpp │ │ │ │ ├── include │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── link.h │ │ │ │ │ └── mlibc │ │ │ │ │ │ └── elf │ │ │ │ │ │ └── startup.h │ │ │ │ └── meson.build │ │ │ ├── glibc │ │ │ │ ├── generic │ │ │ │ │ ├── err.cpp │ │ │ │ │ ├── error.cpp │ │ │ │ │ ├── execinfo.cpp │ │ │ │ │ ├── getopt-stubs.cpp │ │ │ │ │ ├── glibc-assert.cpp │ │ │ │ │ ├── glibc-signal.cpp │ │ │ │ │ ├── gshadow.cpp │ │ │ │ │ ├── personality.cpp │ │ │ │ │ ├── printf.cpp │ │ │ │ │ ├── resolv-stubs.cpp │ │ │ │ │ ├── shadow-stubs.cpp │ │ │ │ │ ├── stdio_ext-stubs.cpp │ │ │ │ │ ├── string.cpp │ │ │ │ │ ├── sys-ioctl.cpp │ │ │ │ │ └── sys-timex.cpp │ │ │ │ ├── include │ │ │ │ │ ├── ar.h │ │ │ │ │ ├── bits │ │ │ │ │ │ └── glibc │ │ │ │ │ │ │ ├── glibc_assert.h │ │ │ │ │ │ │ └── glibc_signal.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── err.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── execinfo.h │ │ │ │ │ ├── features.h │ │ │ │ │ ├── getopt.h │ │ │ │ │ ├── gshadow.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── mlibc │ │ │ │ │ │ └── glibc-sysdeps.hpp │ │ │ │ │ ├── net │ │ │ │ │ │ ├── ethernet.h │ │ │ │ │ │ ├── if_ppp.h │ │ │ │ │ │ ├── if_types.h │ │ │ │ │ │ └── route.h │ │ │ │ │ ├── netax25 │ │ │ │ │ │ └── ax25.h │ │ │ │ │ ├── netinet │ │ │ │ │ │ ├── icmp6.h │ │ │ │ │ │ └── in_systm.h │ │ │ │ │ ├── netipx │ │ │ │ │ │ └── ipx.h │ │ │ │ │ ├── netrom │ │ │ │ │ │ └── netrom.h │ │ │ │ │ ├── paths.h │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── resolv.h │ │ │ │ │ ├── shadow.h │ │ │ │ │ ├── stdio_ext.h │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── dir.h │ │ │ │ │ │ ├── endian.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── ioctl.h │ │ │ │ │ │ ├── kd.h │ │ │ │ │ │ ├── mtio.h │ │ │ │ │ │ ├── personality.h │ │ │ │ │ │ ├── procfs.h │ │ │ │ │ │ ├── reg.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── timeb.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ ├── ucontext.h │ │ │ │ │ │ └── user.h │ │ │ │ │ └── sysexits.h │ │ │ │ └── meson.build │ │ │ ├── iconv │ │ │ │ ├── generic │ │ │ │ │ └── iconv-stubs.cpp │ │ │ │ ├── include │ │ │ │ │ └── iconv.h │ │ │ │ └── meson.build │ │ │ ├── internal │ │ │ │ ├── aarch64-include │ │ │ │ │ └── mlibc │ │ │ │ │ │ ├── arch-defs.hpp │ │ │ │ │ │ └── thread.hpp │ │ │ │ ├── aarch64 │ │ │ │ │ ├── fenv.S │ │ │ │ │ ├── mlibc_crtend.S │ │ │ │ │ └── setjmp.S │ │ │ │ ├── gcc-extra │ │ │ │ │ ├── cxxabi.cpp │ │ │ │ │ └── mlibc_crtbegin.S │ │ │ │ ├── gcc │ │ │ │ │ ├── guard-abi.cpp │ │ │ │ │ ├── initfini.cpp │ │ │ │ │ └── stack_protector.cpp │ │ │ │ ├── generic │ │ │ │ │ ├── allocator.cpp │ │ │ │ │ ├── charcode.cpp │ │ │ │ │ ├── charset.cpp │ │ │ │ │ ├── debug.cpp │ │ │ │ │ ├── ensure.cpp │ │ │ │ │ ├── essential.cpp │ │ │ │ │ ├── frigg.cpp │ │ │ │ │ ├── global-config.cpp │ │ │ │ │ ├── inline-emitter.cpp │ │ │ │ │ ├── locale.cpp │ │ │ │ │ ├── sigset.cpp │ │ │ │ │ ├── strings.cpp │ │ │ │ │ └── ubsan.cpp │ │ │ │ ├── include │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── cpu_set.h │ │ │ │ │ │ ├── ensure.h │ │ │ │ │ │ ├── ether_addr.h │ │ │ │ │ │ ├── inline-definition.h │ │ │ │ │ │ ├── machine.h │ │ │ │ │ │ ├── mbstate.h │ │ │ │ │ │ ├── nl_item.h │ │ │ │ │ │ ├── null.h │ │ │ │ │ │ ├── off_t.h │ │ │ │ │ │ ├── sigset_t.h │ │ │ │ │ │ ├── size_t.h │ │ │ │ │ │ ├── ssize_t.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── wchar.h │ │ │ │ │ │ ├── wchar_t.h │ │ │ │ │ │ └── wint_t.h │ │ │ │ │ ├── mlibc │ │ │ │ │ │ ├── all-sysdeps.hpp │ │ │ │ │ │ ├── allocator.hpp │ │ │ │ │ │ ├── bitutil.hpp │ │ │ │ │ │ ├── charcode.hpp │ │ │ │ │ │ ├── charset.hpp │ │ │ │ │ │ ├── debug.hpp │ │ │ │ │ │ ├── file-window.hpp │ │ │ │ │ │ ├── fsfd_target.hpp │ │ │ │ │ │ ├── global-config.hpp │ │ │ │ │ │ ├── internal-sysdeps.hpp │ │ │ │ │ │ ├── locale.hpp │ │ │ │ │ │ ├── lock.hpp │ │ │ │ │ │ ├── stack_protector.hpp │ │ │ │ │ │ ├── strings.hpp │ │ │ │ │ │ ├── strtofp.hpp │ │ │ │ │ │ ├── strtol.hpp │ │ │ │ │ │ ├── tcb.hpp │ │ │ │ │ │ └── tid.hpp │ │ │ │ │ └── stdint.h │ │ │ │ ├── riscv64-include │ │ │ │ │ └── mlibc │ │ │ │ │ │ ├── arch-defs.hpp │ │ │ │ │ │ └── thread.hpp │ │ │ │ ├── riscv64 │ │ │ │ │ ├── fenv.S │ │ │ │ │ ├── mlibc_crtend.S │ │ │ │ │ └── setjmp.S │ │ │ │ ├── x86 │ │ │ │ │ ├── mlibc_crtend.S │ │ │ │ │ └── setjmp.S │ │ │ │ ├── x86_64-include │ │ │ │ │ └── mlibc │ │ │ │ │ │ ├── arch-defs.hpp │ │ │ │ │ │ └── thread.hpp │ │ │ │ └── x86_64 │ │ │ │ │ ├── fenv.S │ │ │ │ │ ├── mlibc_crtend.S │ │ │ │ │ └── setjmp.S │ │ │ ├── intl │ │ │ │ ├── generic │ │ │ │ │ └── libintl-stubs.cpp │ │ │ │ ├── include │ │ │ │ │ └── libintl.h │ │ │ │ └── meson.build │ │ │ ├── linux │ │ │ │ ├── generic │ │ │ │ │ ├── capabilities.cpp │ │ │ │ │ ├── cpuset.cpp │ │ │ │ │ ├── ifaddrs.cpp │ │ │ │ │ ├── linux-unistd.cpp │ │ │ │ │ ├── malloc.cpp │ │ │ │ │ ├── mntent-stubs.cpp │ │ │ │ │ ├── module.cpp │ │ │ │ │ ├── pty-stubs.cpp │ │ │ │ │ ├── sched.cpp │ │ │ │ │ ├── sys-epoll.cpp │ │ │ │ │ ├── sys-eventfd.cpp │ │ │ │ │ ├── sys-fsuid.cpp │ │ │ │ │ ├── sys-inotify-stubs.cpp │ │ │ │ │ ├── sys-klog.cpp │ │ │ │ │ ├── sys-mount.cpp │ │ │ │ │ ├── sys-prctl-stubs.cpp │ │ │ │ │ ├── sys-ptrace-stubs.cpp │ │ │ │ │ ├── sys-quota.cpp │ │ │ │ │ ├── sys-random-stubs.cpp │ │ │ │ │ ├── sys-reboot.cpp │ │ │ │ │ ├── sys-sendfile-stubs.cpp │ │ │ │ │ ├── sys-signalfd.cpp │ │ │ │ │ ├── sys-swap.cpp │ │ │ │ │ ├── sys-sysinfo.cpp │ │ │ │ │ ├── sys-timerfd.cpp │ │ │ │ │ ├── sys-xattr.cpp │ │ │ │ │ ├── utmp-stubs.cpp │ │ │ │ │ └── utmpx.cpp │ │ │ │ ├── include │ │ │ │ │ ├── bits │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── cpu_set.h │ │ │ │ │ │ │ ├── linux_sched.h │ │ │ │ │ │ │ └── linux_unistd.h │ │ │ │ │ ├── ifaddrs.h │ │ │ │ │ ├── lastlog.h │ │ │ │ │ ├── linux │ │ │ │ │ │ └── libc-compat.h │ │ │ │ │ ├── malloc.h │ │ │ │ │ ├── memory.h │ │ │ │ │ ├── mlibc │ │ │ │ │ │ └── linux-sysdeps.hpp │ │ │ │ │ ├── mntent.h │ │ │ │ │ ├── module.h │ │ │ │ │ ├── netpacket │ │ │ │ │ │ └── packet.h │ │ │ │ │ ├── pty.h │ │ │ │ │ ├── scsi │ │ │ │ │ │ ├── scsi.h │ │ │ │ │ │ ├── scsi_ioctl.h │ │ │ │ │ │ └── sg.h │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── eventfd.h │ │ │ │ │ │ ├── fsuid.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── klog.h │ │ │ │ │ │ ├── mount.h │ │ │ │ │ │ ├── prctl.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── quota.h │ │ │ │ │ │ ├── random.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── sendfile.h │ │ │ │ │ │ ├── signalfd.h │ │ │ │ │ │ ├── swap.h │ │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ │ ├── sysmacros.h │ │ │ │ │ │ ├── timerfd.h │ │ │ │ │ │ ├── vt.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ ├── utmpx.h │ │ │ │ │ └── values.h │ │ │ │ └── meson.build │ │ │ ├── lsb │ │ │ │ ├── generic │ │ │ │ │ ├── auxv.cpp │ │ │ │ │ ├── dso_exit.cpp │ │ │ │ │ └── tls.cpp │ │ │ │ ├── include │ │ │ │ │ └── sys │ │ │ │ │ │ └── auxv.h │ │ │ │ └── meson.build │ │ │ ├── posix │ │ │ │ ├── generic │ │ │ │ │ ├── arpa-inet-stubs.cpp │ │ │ │ │ ├── dirent-stubs.cpp │ │ │ │ │ ├── dlfcn-stubs.cpp │ │ │ │ │ ├── fcntl-stubs.cpp │ │ │ │ │ ├── ftw-stubs.cpp │ │ │ │ │ ├── grp-stubs.cpp │ │ │ │ │ ├── langinfo-stubs.cpp │ │ │ │ │ ├── libgen-stubs.cpp │ │ │ │ │ ├── lookup.cpp │ │ │ │ │ ├── mqueue.cpp │ │ │ │ │ ├── net-if-stubs.cpp │ │ │ │ │ ├── netdb-stubs.cpp │ │ │ │ │ ├── poll.cpp │ │ │ │ │ ├── posix-file-io.cpp │ │ │ │ │ ├── posix_ctype.cpp │ │ │ │ │ ├── posix_locale.cpp │ │ │ │ │ ├── posix_signal.cpp │ │ │ │ │ ├── posix_stdio.cpp │ │ │ │ │ ├── posix_stdlib.cpp │ │ │ │ │ ├── posix_string.cpp │ │ │ │ │ ├── posix_time.cpp │ │ │ │ │ ├── pthread-stubs.cpp │ │ │ │ │ ├── pwd-stubs.cpp │ │ │ │ │ ├── resolv_conf.cpp │ │ │ │ │ ├── sched-stubs.cpp │ │ │ │ │ ├── search.cpp │ │ │ │ │ ├── semaphore-stubs.cpp │ │ │ │ │ ├── services.cpp │ │ │ │ │ ├── spawn-stubs.cpp │ │ │ │ │ ├── strings-stubs.cpp │ │ │ │ │ ├── sys-file-stubs.cpp │ │ │ │ │ ├── sys-ipc.cpp │ │ │ │ │ ├── sys-mman-stubs.cpp │ │ │ │ │ ├── sys-msg.cpp │ │ │ │ │ ├── sys-resource-stubs.cpp │ │ │ │ │ ├── sys-select-stubs.cpp │ │ │ │ │ ├── sys-sem.cpp │ │ │ │ │ ├── sys-shm.cpp │ │ │ │ │ ├── sys-socket-stubs.cpp │ │ │ │ │ ├── sys-stat-stubs.cpp │ │ │ │ │ ├── sys-statfs-stubs.cpp │ │ │ │ │ ├── sys-statvfs-stubs.cpp │ │ │ │ │ ├── sys-time-stubs.cpp │ │ │ │ │ ├── sys-times.cpp │ │ │ │ │ ├── sys-uio.cpp │ │ │ │ │ ├── sys-utsname.cpp │ │ │ │ │ ├── sys-wait-stubs.cpp │ │ │ │ │ ├── syslog-stubs.cpp │ │ │ │ │ ├── termios-stubs.cpp │ │ │ │ │ ├── time.cpp │ │ │ │ │ ├── ucontext-stubs.cpp │ │ │ │ │ ├── unistd-stubs.cpp │ │ │ │ │ ├── utime-stubs.cpp │ │ │ │ │ └── wordexp-stubs.cpp │ │ │ │ ├── include │ │ │ │ │ ├── arpa │ │ │ │ │ │ └── inet.h │ │ │ │ │ ├── bits │ │ │ │ │ │ └── posix │ │ │ │ │ │ │ ├── fd_set.h │ │ │ │ │ │ │ ├── id_t.h │ │ │ │ │ │ │ ├── in_addr_t.h │ │ │ │ │ │ │ ├── in_port_t.h │ │ │ │ │ │ │ ├── iovec.h │ │ │ │ │ │ │ ├── locale_t.h │ │ │ │ │ │ │ ├── posix_ctype.h │ │ │ │ │ │ │ ├── posix_locale.h │ │ │ │ │ │ │ ├── posix_signal.h │ │ │ │ │ │ │ ├── posix_stdio.h │ │ │ │ │ │ │ ├── posix_stdlib.h │ │ │ │ │ │ │ ├── posix_string.h │ │ │ │ │ │ │ ├── posix_time.h │ │ │ │ │ │ │ ├── posix_wctype.h │ │ │ │ │ │ │ ├── pthread_t.h │ │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ │ ├── timer_t.h │ │ │ │ │ │ │ └── timeval.h │ │ │ │ │ ├── byteswap.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── dlfcn.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fnmatch.h │ │ │ │ │ ├── ftw.h │ │ │ │ │ ├── glob.h │ │ │ │ │ ├── grp.h │ │ │ │ │ ├── langinfo.h │ │ │ │ │ ├── libgen.h │ │ │ │ │ ├── mlibc │ │ │ │ │ │ ├── lookup.hpp │ │ │ │ │ │ ├── posix-file-io.hpp │ │ │ │ │ │ ├── posix-sysdeps.hpp │ │ │ │ │ │ ├── resolv_conf.hpp │ │ │ │ │ │ └── services.hpp │ │ │ │ │ ├── mqueue.h │ │ │ │ │ ├── net │ │ │ │ │ │ ├── if.h │ │ │ │ │ │ └── if_arp.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── netinet │ │ │ │ │ │ ├── icmp6.h │ │ │ │ │ │ ├── if_ether.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ip.h │ │ │ │ │ │ ├── ip6.h │ │ │ │ │ │ ├── tcp.h │ │ │ │ │ │ └── udp.h │ │ │ │ │ ├── nl_types.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── pwd.h │ │ │ │ │ ├── regex.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── search.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── spawn.h │ │ │ │ │ ├── strings.h │ │ │ │ │ ├── sys │ │ │ │ │ │ ├── file.h │ │ │ │ │ │ ├── ipc.h │ │ │ │ │ │ ├── mman.h │ │ │ │ │ │ ├── msg.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── select.h │ │ │ │ │ │ ├── sem.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── syslog.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── times.h │ │ │ │ │ │ ├── ttydefaults.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── uio.h │ │ │ │ │ │ ├── un.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vfs.h │ │ │ │ │ │ └── wait.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── utime.h │ │ │ │ │ └── wordexp.h │ │ │ │ ├── meson.build │ │ │ │ └── musl-generic-regex │ │ │ │ │ ├── fnmatch.c │ │ │ │ │ ├── glob.c │ │ │ │ │ ├── regcomp.c │ │ │ │ │ ├── regerror.c │ │ │ │ │ ├── regexec.c │ │ │ │ │ ├── tre-mem.c │ │ │ │ │ └── tre.h │ │ │ └── rtdl │ │ │ │ ├── aarch64 │ │ │ │ ├── entry.S │ │ │ │ └── runtime.S │ │ │ │ ├── generic │ │ │ │ ├── linker.cpp │ │ │ │ ├── linker.hpp │ │ │ │ └── main.cpp │ │ │ │ ├── include │ │ │ │ └── mlibc │ │ │ │ │ ├── rtdl-abi.hpp │ │ │ │ │ ├── rtdl-config.hpp │ │ │ │ │ └── rtdl-sysdeps.hpp │ │ │ │ ├── riscv64 │ │ │ │ ├── entry.S │ │ │ │ └── runtime.S │ │ │ │ └── x86_64 │ │ │ │ ├── entry.S │ │ │ │ └── runtime.S │ │ │ ├── scripts │ │ │ └── abi-link.sh │ │ │ ├── subprojects │ │ │ ├── cxxshim.wrap │ │ │ └── frigg.wrap │ │ │ ├── sysdeps │ │ │ ├── aero │ │ │ │ ├── crt-x86_64 │ │ │ │ │ └── crt0.S │ │ │ │ ├── generic │ │ │ │ │ ├── aero.cpp │ │ │ │ │ ├── entry.cpp │ │ │ │ │ ├── filesystem.cpp │ │ │ │ │ ├── signals.S │ │ │ │ │ ├── signals.cpp │ │ │ │ │ ├── sockets.cpp │ │ │ │ │ ├── thread.cpp │ │ │ │ │ ├── thread_entry.S │ │ │ │ │ └── time.cpp │ │ │ │ ├── include │ │ │ │ │ ├── abi-bits │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ │ ├── dev_t.h │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ │ ├── gid_t.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ino_t.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mode_t.h │ │ │ │ │ │ ├── mqueue.h │ │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── pid_t.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uid_t.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ ├── aero │ │ │ │ │ │ └── syscall.h │ │ │ │ │ └── mlibc │ │ │ │ │ │ └── thread-entry.hpp │ │ │ │ └── meson.build │ │ │ ├── dripos │ │ │ │ ├── crt-x86_64 │ │ │ │ │ └── crt1.S │ │ │ │ ├── generic │ │ │ │ │ ├── entry.cpp │ │ │ │ │ ├── generic.cpp │ │ │ │ │ ├── thread.cpp │ │ │ │ │ └── thread_entry.S │ │ │ │ ├── include │ │ │ │ │ ├── abi-bits │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ │ ├── dev_t.h │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ │ ├── gid_t.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ino_t.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mode_t.h │ │ │ │ │ │ ├── mqueue.h │ │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── pid_t.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uid_t.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ └── mlibc │ │ │ │ │ │ └── thread-entry.hpp │ │ │ │ └── meson.build │ │ │ ├── ironclad │ │ │ │ ├── crt-x86_64 │ │ │ │ │ └── crt0.S │ │ │ │ ├── generic │ │ │ │ │ ├── entry.cpp │ │ │ │ │ └── generic.cpp │ │ │ │ ├── include │ │ │ │ │ ├── abi-bits │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ │ ├── dev_t.h │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ │ ├── gid_t.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ino_t.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mode_t.h │ │ │ │ │ │ ├── mqueue.h │ │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── pid_t.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uid_t.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ └── sys │ │ │ │ │ │ ├── ironclad.h │ │ │ │ │ │ └── syscall.h │ │ │ │ └── meson.build │ │ │ ├── kot │ │ │ │ ├── generic │ │ │ │ │ ├── entry.cpp │ │ │ │ │ ├── filesystem.cpp │ │ │ │ │ ├── generic.cpp │ │ │ │ │ ├── signal.cpp │ │ │ │ │ └── signal.s │ │ │ │ ├── include │ │ │ │ │ ├── abi-bits │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ │ ├── dev_t.h │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ │ ├── gid_t.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ino_t.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mode_t.h │ │ │ │ │ │ ├── mqueue.h │ │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── pid_t.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uid_t.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ │ ├── vt.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ └── kot │ │ │ │ │ │ └── syscall.h │ │ │ │ ├── meson.build │ │ │ │ └── x86_64 │ │ │ │ │ ├── arch-syscall.cpp │ │ │ │ │ └── crt-src │ │ │ │ │ └── crt0.S │ │ │ ├── lemon │ │ │ │ ├── crt-x86_64 │ │ │ │ │ └── crt0.S │ │ │ │ ├── generic │ │ │ │ │ ├── entry.cpp │ │ │ │ │ ├── filesystem.cpp │ │ │ │ │ ├── lemon.cpp │ │ │ │ │ ├── signals.cpp │ │ │ │ │ ├── sockets.cpp │ │ │ │ │ ├── thread.cpp │ │ │ │ │ └── thread_entry.S │ │ │ │ ├── include │ │ │ │ │ ├── abi-bits │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ │ ├── dev_t.h │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ │ ├── gid_t.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ino_t.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mode_t.h │ │ │ │ │ │ ├── mqueue.h │ │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── pid_t.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uid_t.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ ├── lemon │ │ │ │ │ │ └── syscall.h │ │ │ │ │ └── mlibc │ │ │ │ │ │ └── thread-entry.hpp │ │ │ │ └── meson.build │ │ │ ├── linux │ │ │ │ ├── aarch64 │ │ │ │ │ ├── arch-syscall.cpp │ │ │ │ │ ├── cp_syscall.S │ │ │ │ │ ├── crt-src │ │ │ │ │ │ ├── Scrt1.S │ │ │ │ │ │ ├── crt1.S │ │ │ │ │ │ ├── crti.S │ │ │ │ │ │ └── crtn.S │ │ │ │ │ ├── signals.S │ │ │ │ │ ├── syscallnos.h │ │ │ │ │ └── thread_entry.S │ │ │ │ ├── generic │ │ │ │ │ ├── cxx-syscall.hpp │ │ │ │ │ ├── entry.cpp │ │ │ │ │ ├── sysdeps.cpp │ │ │ │ │ └── thread.cpp │ │ │ │ ├── include-internal │ │ │ │ │ └── linux │ │ │ │ │ │ └── unistd.h │ │ │ │ ├── include │ │ │ │ │ ├── abi-bits │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ │ ├── dev_t.h │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ │ ├── gid_t.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ino_t.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mode_t.h │ │ │ │ │ │ ├── mqueue.h │ │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── pid_t.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uid_t.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ │ ├── vt.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ ├── bits │ │ │ │ │ │ ├── syscall.h │ │ │ │ │ │ └── syscall_aliases.h │ │ │ │ │ ├── mlibc │ │ │ │ │ │ └── thread-entry.hpp │ │ │ │ │ ├── sys │ │ │ │ │ │ └── syscall.h │ │ │ │ │ └── syscall.h │ │ │ │ ├── meson.build │ │ │ │ ├── mlibc-gcc.in │ │ │ │ ├── mlibc-gcc.specs.in │ │ │ │ ├── riscv64 │ │ │ │ │ ├── arch-syscall.cpp │ │ │ │ │ ├── cp_syscall.S │ │ │ │ │ ├── crt-src │ │ │ │ │ │ ├── Scrt1.S │ │ │ │ │ │ ├── crt1.S │ │ │ │ │ │ ├── crti.S │ │ │ │ │ │ └── crtn.S │ │ │ │ │ ├── signals.S │ │ │ │ │ ├── syscallnos.h │ │ │ │ │ └── thread_entry.S │ │ │ │ ├── update-syscall-list.py │ │ │ │ └── x86_64 │ │ │ │ │ ├── arch-syscall.cpp │ │ │ │ │ ├── cp_syscall.S │ │ │ │ │ ├── crt-src │ │ │ │ │ ├── Scrt1.S │ │ │ │ │ ├── crt1.S │ │ │ │ │ ├── crti.S │ │ │ │ │ └── crtn.S │ │ │ │ │ ├── signals.S │ │ │ │ │ ├── syscallnos.h │ │ │ │ │ └── thread_entry.S │ │ │ ├── lyre │ │ │ │ ├── generic │ │ │ │ │ ├── entry.cpp │ │ │ │ │ ├── generic.cpp │ │ │ │ │ ├── thread.S │ │ │ │ │ └── thread.cpp │ │ │ │ ├── include │ │ │ │ │ ├── abi-bits │ │ │ │ │ │ ├── access.h │ │ │ │ │ │ ├── auxv.h │ │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ │ ├── dev_t.h │ │ │ │ │ │ ├── epoll.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── fcntl.h │ │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ │ ├── gid_t.h │ │ │ │ │ │ ├── in.h │ │ │ │ │ │ ├── ino_t.h │ │ │ │ │ │ ├── inotify.h │ │ │ │ │ │ ├── ioctls.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── mode_t.h │ │ │ │ │ │ ├── mqueue.h │ │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ │ ├── packet.h │ │ │ │ │ │ ├── pid_t.h │ │ │ │ │ │ ├── poll.h │ │ │ │ │ │ ├── ptrace.h │ │ │ │ │ │ ├── reboot.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ │ ├── shm.h │ │ │ │ │ │ ├── signal.h │ │ │ │ │ │ ├── socket.h │ │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── statfs.h │ │ │ │ │ │ ├── statvfs.h │ │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ │ ├── termios.h │ │ │ │ │ │ ├── time.h │ │ │ │ │ │ ├── uid_t.h │ │ │ │ │ │ ├── utsname.h │ │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ │ ├── wait.h │ │ │ │ │ │ └── xattr.h │ │ │ │ │ └── lyre │ │ │ │ │ │ └── syscall.h │ │ │ │ ├── meson.build │ │ │ │ └── x86_64 │ │ │ │ │ └── crt-src │ │ │ │ │ ├── crt0.S │ │ │ │ │ ├── crti.S │ │ │ │ │ └── crtn.S │ │ │ └── managarm │ │ │ │ ├── aarch64 │ │ │ │ ├── crt-src │ │ │ │ │ └── crt0.S │ │ │ │ ├── signals.S │ │ │ │ ├── thread.cpp │ │ │ │ └── thread_entry.S │ │ │ │ ├── generic │ │ │ │ ├── drm.cpp │ │ │ │ ├── ensure.cpp │ │ │ │ ├── entry.cpp │ │ │ │ ├── file.cpp │ │ │ │ ├── fork-exec.cpp │ │ │ │ ├── ioctl.cpp │ │ │ │ ├── memory.cpp │ │ │ │ ├── mount.cpp │ │ │ │ ├── net.cpp │ │ │ │ ├── signals.cpp │ │ │ │ ├── socket.cpp │ │ │ │ └── time.cpp │ │ │ │ ├── include │ │ │ │ ├── abi-bits │ │ │ │ │ ├── access.h │ │ │ │ │ ├── auxv.h │ │ │ │ │ ├── blkcnt_t.h │ │ │ │ │ ├── blksize_t.h │ │ │ │ │ ├── clockid_t.h │ │ │ │ │ ├── dev_t.h │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fsblkcnt_t.h │ │ │ │ │ ├── fsfilcnt_t.h │ │ │ │ │ ├── gid_t.h │ │ │ │ │ ├── in.h │ │ │ │ │ ├── ino_t.h │ │ │ │ │ ├── inotify.h │ │ │ │ │ ├── ioctls.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── mode_t.h │ │ │ │ │ ├── mqueue.h │ │ │ │ │ ├── nlink_t.h │ │ │ │ │ ├── packet.h │ │ │ │ │ ├── pid_t.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── seek-whence.h │ │ │ │ │ ├── shm.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── socklen_t.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── statvfs.h │ │ │ │ │ ├── suseconds_t.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── uid_t.h │ │ │ │ │ ├── utsname.h │ │ │ │ │ ├── vm-flags.h │ │ │ │ │ ├── wait.h │ │ │ │ │ └── xattr.h │ │ │ │ └── mlibc │ │ │ │ │ ├── posix-pipe.hpp │ │ │ │ │ └── thread-entry.hpp │ │ │ │ ├── meson.build │ │ │ │ ├── rtdl-generic │ │ │ │ └── support.cpp │ │ │ │ └── x86_64 │ │ │ │ ├── crt-src │ │ │ │ ├── Scrt1.S │ │ │ │ └── crt0.S │ │ │ │ ├── signals.S │ │ │ │ ├── thread.cpp │ │ │ │ └── thread_entry.S │ │ │ └── tests │ │ │ ├── ansi │ │ │ ├── abs.c │ │ │ ├── alloc.c │ │ │ ├── creal-cimag.c │ │ │ ├── fenv.c │ │ │ ├── fopen.c │ │ │ ├── locale.c │ │ │ ├── longjmp.c │ │ │ ├── memmem.c │ │ │ ├── qsort.c │ │ │ ├── snprintf.c │ │ │ ├── sprintf.c │ │ │ ├── sscanf.c │ │ │ ├── strchr.c │ │ │ ├── strftime.c │ │ │ ├── strrchr.c │ │ │ ├── strtol.c │ │ │ ├── strverscmp.c │ │ │ ├── timegm.c │ │ │ ├── ungetc.c │ │ │ ├── utf8.c │ │ │ ├── wcsdup.c │ │ │ ├── wcsncasecmp.c │ │ │ ├── wcsrtombs.c │ │ │ └── wmemcmp.c │ │ │ ├── bsd │ │ │ ├── ns_get_put.c │ │ │ ├── reallocarray.c │ │ │ ├── sbrk.c │ │ │ └── strl.c │ │ │ ├── glibc │ │ │ ├── error.c │ │ │ ├── error.py │ │ │ ├── error_at_line.c │ │ │ ├── error_at_line.py │ │ │ ├── error_expect_fail.c │ │ │ ├── error_message_count.c │ │ │ ├── error_one_per_line.c │ │ │ ├── error_print_progname.c │ │ │ ├── ffsl-ffsll.c │ │ │ ├── getopt.c │ │ │ ├── gnu-basename.c │ │ │ └── linux-syscall.c │ │ │ ├── linux │ │ │ ├── cpuset.c │ │ │ ├── pthread_attr.c │ │ │ ├── pthread_setname_np.c │ │ │ └── xattr.c │ │ │ ├── meson.build │ │ │ ├── posix │ │ │ ├── abort.c │ │ │ ├── accept4.c │ │ │ ├── access.c │ │ │ ├── alarm.c │ │ │ ├── basename.c │ │ │ ├── dprintf.c │ │ │ ├── fdopen.c │ │ │ ├── ffs.c │ │ │ ├── flockfile.c │ │ │ ├── getaddrinfo.c │ │ │ ├── getcwd.c │ │ │ ├── getdelim.c │ │ │ ├── getnameinfo.c │ │ │ ├── getservbyname.c │ │ │ ├── getservbyport.c │ │ │ ├── grp.c │ │ │ ├── if_indextoname.c │ │ │ ├── index.c │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── memrchr.c │ │ │ ├── open_memstream.c │ │ │ ├── pause.c │ │ │ ├── popen.c │ │ │ ├── posix-timer.c │ │ │ ├── posix_memalign.c │ │ │ ├── posix_spawn.c │ │ │ ├── pthread_atfork.c │ │ │ ├── pthread_attr.c │ │ │ ├── pthread_barrier.c │ │ │ ├── pthread_cancel.c │ │ │ ├── pthread_cleanup.c │ │ │ ├── pthread_cond.c │ │ │ ├── pthread_create.c │ │ │ ├── pthread_key.c │ │ │ ├── pthread_kill.c │ │ │ ├── pthread_mutex.c │ │ │ ├── pthread_rwlock.c │ │ │ ├── pthread_schedparam.c │ │ │ ├── pthread_thread_local.c │ │ │ ├── pwd.c │ │ │ ├── readv-writev.c │ │ │ ├── realpath.c │ │ │ ├── regex.c │ │ │ ├── rindex.c │ │ │ ├── rlimits.c │ │ │ ├── search.c │ │ │ ├── setpriority.c │ │ │ ├── sigaltstack.c │ │ │ ├── sigsuspend.c │ │ │ ├── sigtimedwait.c │ │ │ ├── strdupa.c │ │ │ ├── string.c │ │ │ ├── system.c │ │ │ ├── time.c │ │ │ ├── timer.c │ │ │ ├── vfork.c │ │ │ ├── wcwidth.c │ │ │ └── wordexp.c │ │ │ └── rtdl │ │ │ ├── dl_iterate_phdr │ │ │ ├── libbar.c │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── meson.build │ │ │ ├── noload-promote │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── preinit │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── rtld_next │ │ │ ├── libbar.c │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── scope1 │ │ │ ├── libbar.c │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── scope2 │ │ │ ├── libbar.c │ │ │ ├── libbaz.c │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── scope3 │ │ │ ├── libbar.c │ │ │ ├── libbaz.c │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── scope4 │ │ │ ├── libbar.c │ │ │ ├── libbaz.c │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ ├── scope5 │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ │ │ └── soname │ │ │ ├── libbar.c │ │ │ ├── libfoo.c │ │ │ ├── meson.build │ │ │ └── test.c │ └── modules │ │ ├── ahci │ │ ├── source │ │ │ ├── controller.c │ │ │ ├── controller.h │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── port.c │ │ │ └── port.h │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── boot │ │ ├── source │ │ │ ├── main.c │ │ │ └── tga │ │ │ │ ├── tga.c │ │ │ │ └── tga.h │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── devconsole │ │ ├── source │ │ │ ├── console │ │ │ │ ├── ansi.h │ │ │ │ ├── console.c │ │ │ │ └── console.h │ │ │ ├── interface.c │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── devfb │ │ ├── source │ │ │ ├── interface.c │ │ │ ├── key.c │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── devfs │ │ ├── source │ │ │ ├── core.c │ │ │ ├── core.h │ │ │ ├── interface.c │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── devpower │ │ ├── source │ │ │ ├── interface.c │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── e1000 │ │ ├── source │ │ │ ├── controller.c │ │ │ ├── controller.h │ │ │ ├── e1000_regs.h │ │ │ ├── e1000x_regs.h │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── fat32 │ │ ├── source │ │ │ ├── core.c │ │ │ ├── core.h │ │ │ ├── interface.c │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── hid │ │ ├── source │ │ │ ├── interface.c │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── net │ │ ├── source │ │ │ ├── arp.c │ │ │ ├── arp.h │ │ │ ├── dhcp.c │ │ │ ├── dhcp.h │ │ │ ├── dhcp_header.h │ │ │ ├── ethernet.c │ │ │ ├── ethernet.h │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── ip.c │ │ │ ├── ip.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── protocols.h │ │ │ ├── socket.c │ │ │ ├── socket.h │ │ │ ├── tcp.c │ │ │ ├── tcp.h │ │ │ ├── udp.c │ │ │ └── udp.h │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── pci │ │ ├── source │ │ │ ├── device.c │ │ │ ├── interface.c │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ └── pcie.h │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── ps2 │ │ ├── source │ │ │ ├── core.c │ │ │ ├── core.h │ │ │ ├── keyboard.c │ │ │ ├── main.c │ │ │ └── mouse.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── rtc │ │ ├── source │ │ │ ├── core.c │ │ │ ├── core.h │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── storage │ │ ├── source │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── partition.c │ │ │ ├── partition.h │ │ │ └── partition │ │ │ │ ├── crc32.c │ │ │ │ ├── crc32.h │ │ │ │ ├── gpt.c │ │ │ │ ├── gpt.h │ │ │ │ ├── mbr.c │ │ │ │ └── mbr.h │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ ├── test │ │ ├── source │ │ │ └── main.c │ │ └── target │ │ │ └── amd64 │ │ │ ├── .gitignore │ │ │ └── makefile │ │ └── vfs │ │ ├── source │ │ ├── core.c │ │ ├── core.h │ │ ├── initrd.c │ │ ├── main.c │ │ ├── system.c │ │ └── system.h │ │ └── target │ │ └── amd64 │ │ ├── .gitignore │ │ └── makefile ├── extern │ ├── .gitignore │ └── makefile └── tools │ ├── .gitignore │ ├── build.sh │ └── ksym.c └── target ├── .gitignore ├── boot-disk.sh ├── build └── liamd.sh ├── disk.cfg ├── host-installer.sh ├── initrd ├── system │ ├── console │ │ └── fonts │ │ │ └── vga.bin │ ├── default │ │ └── scancode.scd │ └── starter │ │ └── modules.cfg └── tools │ ├── .gitignore │ ├── build.sh │ └── ksym.c ├── limine.cfg └── makefile /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/bootstrap.yml -------------------------------------------------------------------------------- /bootstrap/cross-file.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/bootstrap/cross-file.ini -------------------------------------------------------------------------------- /bootstrap/sys-apps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/bootstrap/sys-apps.yml -------------------------------------------------------------------------------- /bootstrap/sys-kernel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/bootstrap/sys-kernel.yml -------------------------------------------------------------------------------- /bootstrap/sys-libs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/bootstrap/sys-libs.yml -------------------------------------------------------------------------------- /bootstrap/sys-modules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/bootstrap/sys-modules.yml -------------------------------------------------------------------------------- /bootstrap/sys-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/bootstrap/sys-tools.yml -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/license -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/makefile -------------------------------------------------------------------------------- /meta/images/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/images/laptop.png -------------------------------------------------------------------------------- /meta/screenshots/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/0.png -------------------------------------------------------------------------------- /meta/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/1.png -------------------------------------------------------------------------------- /meta/screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/10.png -------------------------------------------------------------------------------- /meta/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/2.png -------------------------------------------------------------------------------- /meta/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/3.png -------------------------------------------------------------------------------- /meta/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/4.png -------------------------------------------------------------------------------- /meta/screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/5.png -------------------------------------------------------------------------------- /meta/screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/6.png -------------------------------------------------------------------------------- /meta/screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/7.png -------------------------------------------------------------------------------- /meta/screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/8.png -------------------------------------------------------------------------------- /meta/screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/meta/screenshots/9.png -------------------------------------------------------------------------------- /patches/automake-v1.16/automake-v1.16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/automake-v1.16/automake-v1.16.patch -------------------------------------------------------------------------------- /patches/bash/bash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/bash/bash.patch -------------------------------------------------------------------------------- /patches/binutils/binutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/binutils/binutils.patch -------------------------------------------------------------------------------- /patches/coreutils/coreutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/coreutils/coreutils.patch -------------------------------------------------------------------------------- /patches/curl/curl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/curl/curl.patch -------------------------------------------------------------------------------- /patches/gcc/gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/gcc/gcc.patch -------------------------------------------------------------------------------- /patches/libdrm/libdrm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/libdrm/libdrm.patch -------------------------------------------------------------------------------- /patches/libressl/libressl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/libressl/libressl.patch -------------------------------------------------------------------------------- /patches/ncurses/ncurses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/ncurses/ncurses.patch -------------------------------------------------------------------------------- /patches/nyancat/nyancat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/patches/nyancat/nyancat.patch -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/readme.md -------------------------------------------------------------------------------- /sources/core/apps/datetime/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/datetime/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/datetime/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/datetime/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/bash.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/bash.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/default.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/default.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/doom.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/doom.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/explorer.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/explorer.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/icons.json -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/lock.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/lock.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/lua.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/lua.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/nyancat.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/nyancat.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/reboot.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/reboot.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/shutdown.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/shutdown.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/store-ui.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/store-ui.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/weather-ui.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/weather-ui.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/icons/welcome.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/icons/welcome.tga -------------------------------------------------------------------------------- /sources/core/apps/desktop/res/default_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/res/default_font.ttf -------------------------------------------------------------------------------- /sources/core/apps/desktop/res/desktop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/res/desktop.json -------------------------------------------------------------------------------- /sources/core/apps/desktop/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/desktop/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/desktop/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/desktop/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/default.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/default.tga -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/default_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/default_font.ttf -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/directory.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/directory.tga -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/explorer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/explorer.json -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/file.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/file.tga -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/image.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/image.tga -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/json.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/json.tga -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/text.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/text.tga -------------------------------------------------------------------------------- /sources/core/apps/explorer/res/ttf.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/res/ttf.tga -------------------------------------------------------------------------------- /sources/core/apps/explorer/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/explorer/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/explorer/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/explorer/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/image-reader/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/init/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/init/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/init/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/init/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/init/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/ip/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/ip/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/ip/target/amd64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/ip/target/amd64/.gitignore -------------------------------------------------------------------------------- /sources/core/apps/ip/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/ip/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/llm/docs/jan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/llm/docs/jan.png -------------------------------------------------------------------------------- /sources/core/apps/llm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/llm/readme.md -------------------------------------------------------------------------------- /sources/core/apps/llm/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/llm/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/llm/target/amd64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/llm/target/amd64/.gitignore -------------------------------------------------------------------------------- /sources/core/apps/llm/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/llm/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/lock/res/default_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/lock/res/default_font.ttf -------------------------------------------------------------------------------- /sources/core/apps/lock/res/default_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/lock/res/default_wallpaper.jpg -------------------------------------------------------------------------------- /sources/core/apps/lock/res/lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/lock/res/lock.json -------------------------------------------------------------------------------- /sources/core/apps/lock/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/lock/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/lock/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/lock/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/lock/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/lua/.gitignore: -------------------------------------------------------------------------------- 1 | source/ -------------------------------------------------------------------------------- /sources/core/apps/lua/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/lua/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/lua/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/reboot/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/reboot/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/reboot/target/amd64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/reboot/target/amd64/.gitignore -------------------------------------------------------------------------------- /sources/core/apps/reboot/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/reboot/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/shutdown/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/shutdown/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/shutdown/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/shutdown/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/store-ui/res/default_font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/res/default_font.ttf -------------------------------------------------------------------------------- /sources/core/apps/store-ui/res/store-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/res/store-ui.json -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/apps/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/apps/apps.c -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/apps/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/apps/apps.h -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/deps/deps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/deps/deps.c -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/deps/deps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/deps/deps.h -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/icon/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/icon/icon.c -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/icon/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/icon/icon.h -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/untar/untar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/untar/untar.c -------------------------------------------------------------------------------- /sources/core/apps/store-ui/source/untar/untar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/source/untar/untar.h -------------------------------------------------------------------------------- /sources/core/apps/store-ui/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/store-ui/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/store-ui/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/text-reader/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/text-reader/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/text-reader/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/res/clear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather-ui/res/clear.jpg -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/res/cloudy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather-ui/res/cloudy.jpg -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/res/mist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather-ui/res/mist.jpg -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/res/overcast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather-ui/res/overcast.jpg -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/res/sunny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather-ui/res/sunny.jpg -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/res/weather-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather-ui/res/weather-ui.json -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather-ui/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/weather-ui/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/weather/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/weather/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/weather/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/apps/welcome/res/welcome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/welcome/res/welcome.ttf -------------------------------------------------------------------------------- /sources/core/apps/welcome/res/welcome0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/welcome/res/welcome0.jpg -------------------------------------------------------------------------------- /sources/core/apps/welcome/res/welcome1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/welcome/res/welcome1.jpg -------------------------------------------------------------------------------- /sources/core/apps/welcome/res/welcome2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/welcome/res/welcome2.jpg -------------------------------------------------------------------------------- /sources/core/apps/welcome/res/welcome3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/welcome/res/welcome3.jpg -------------------------------------------------------------------------------- /sources/core/apps/welcome/source/core/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/welcome/source/core/core.c -------------------------------------------------------------------------------- /sources/core/apps/welcome/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/apps/welcome/target/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/apps/welcome/target/amd64/makefile -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/aarch64/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/aarch64/arch.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/aarch64/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/aarch64/panic.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/aarch64/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/aarch64/serial.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/aarch64/vmm.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/acpi.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/acpi.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/apic.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/apic.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/arch.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/asm.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/boot.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/context.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/context.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/cpu.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/cpu.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/cpu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/cpu.inc -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/cpu.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/cpu.s -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/gdt.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/gdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/gdt.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/gdt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/gdt.s -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/hpet.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/hpet.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/idt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/idt.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/idt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/idt.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/idt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/idt.s -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/impl/pmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/impl/pmm.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/impl/time.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/impl/vmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/impl/vmm.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/io.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/panic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/panic.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/serial.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/simd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/simd.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/simd.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/smp.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/smp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/smp.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/smp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/smp.s -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/syscall.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/syscall.s -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/time.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/vmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/vmm.c -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/amd64/vmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/amd64/vmm.h -------------------------------------------------------------------------------- /sources/core/kernel/source/arch/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/arch/include.h -------------------------------------------------------------------------------- /sources/core/kernel/source/boot/limine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/boot/limine.h -------------------------------------------------------------------------------- /sources/core/kernel/source/boot/limine/initrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/boot/limine/initrd.c -------------------------------------------------------------------------------- /sources/core/kernel/source/boot/limine/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/boot/limine/memory.c -------------------------------------------------------------------------------- /sources/core/kernel/source/boot/limine/pmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/boot/limine/pmm.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/apps.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/apps.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/console.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/console/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/console/ansi.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/console/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/console/ansi.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/devfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/devfs.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/devfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/devfs.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/dir.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/dir.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/elf.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/elf_loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/elf_loader.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/elf_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/elf_loader.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/exec.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/exec.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/file.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/file.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/heap.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/heap.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/hw_interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/hw_interrupt.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/hw_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/hw_interrupt.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/ksym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/ksym.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/ksym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/ksym.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/mm.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/mm.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/modules.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/modules.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/pmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/pmm.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/pmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/pmm.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/resources.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/resources.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/scheduler.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/scheduler.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/socket.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/socket.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/syscall.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/syscall.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/time.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/time.h -------------------------------------------------------------------------------- /sources/core/kernel/source/global/vfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/vfs.c -------------------------------------------------------------------------------- /sources/core/kernel/source/global/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/global/vfs.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/arch.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/boot.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/context.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/graphics.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/hw_interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/hw_interrupt.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/initrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/initrd.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/memory.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/panic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/panic.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/serial.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/time.h -------------------------------------------------------------------------------- /sources/core/kernel/source/impl/vmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/impl/vmm.h -------------------------------------------------------------------------------- /sources/core/kernel/source/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/kernel.c -------------------------------------------------------------------------------- /sources/core/kernel/source/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/kernel.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/arguments.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/assert.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/assert.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/bitmap.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/bitmap.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/guid.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/hashmap.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/hashmap/hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/hashmap/hashmap.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/hashmap/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/hashmap/khash.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/lock.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/lock.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/log.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/log.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/math.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/memory.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/memory.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/devfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/devfs.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/dir.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/file.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/hid.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/net.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/pci.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/socket.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/storage.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/time.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/modules/vfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/modules/vfs.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/net.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/printf.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/printf.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/string.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/time.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/time.h -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/vector.c -------------------------------------------------------------------------------- /sources/core/kernel/source/lib/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/lib/vector.h -------------------------------------------------------------------------------- /sources/core/kernel/source/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/source/parameters.h -------------------------------------------------------------------------------- /sources/core/kernel/target/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/target/.gitignore -------------------------------------------------------------------------------- /sources/core/kernel/target/limine/amd64/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/target/limine/amd64/makefile -------------------------------------------------------------------------------- /sources/core/kernel/target/limine/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/target/limine/makefile.cfg -------------------------------------------------------------------------------- /sources/core/kernel/target/opensbi/makefile.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/kernel/target/opensbi/makefile.cfg -------------------------------------------------------------------------------- /sources/core/libs/kot-graphics/source/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/kot-graphics/source/font.h -------------------------------------------------------------------------------- /sources/core/libs/kot-graphics/source/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/kot-graphics/source/image.h -------------------------------------------------------------------------------- /sources/core/libs/kot-graphics/source/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/kot-graphics/source/utils.h -------------------------------------------------------------------------------- /sources/core/libs/kot-graphics/target/amd64/.gitignore: -------------------------------------------------------------------------------- 1 | **/bin 2 | **/lib 3 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/.github/workflows/ci.yml -------------------------------------------------------------------------------- /sources/core/libs/mlibc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/.gitignore -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ABI_BREAKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ABI_BREAKS.md -------------------------------------------------------------------------------- /sources/core/libs/mlibc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/LICENSE -------------------------------------------------------------------------------- /sources/core/libs/mlibc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/README.md -------------------------------------------------------------------------------- /sources/core/libs/mlibc/RELEASE_PROCEDURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/RELEASE_PROCEDURE.md -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/aero/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/aero/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/dripos/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/dripos/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/dripos/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/dripos/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/ironclad/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/ironclad/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/ironclad/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/ironclad/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/lemon/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/lemon/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/blkcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/blksize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/clockid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/dev_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/fsblkcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/fsfilcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/gid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/ino_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/inotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/ioctls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/mode_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/mqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/nlink_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/pid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/seek-whence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/shm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/socklen_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/statfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/suseconds_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/uid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/vm-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/vt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/vt.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/linux/xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/managarm/auxv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/managarm/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/blkcnt_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/blksize_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/clockid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/dev_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/epoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/fcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/gid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/ino_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/inotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/mode_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/nlink_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/pid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/ptrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/seek-whence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/termios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/uid_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/utsname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/vm-flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/abis/mlibc/wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/abis/mlibc/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/abidiff_suppress.ini: -------------------------------------------------------------------------------- 1 | [suppress_function] 2 | name_regexp = ^(mlibc|frg|std)::.* 3 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/aero.cross-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ci/aero.cross-file -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ci/bootstrap.yml -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/dripos.cross-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ci/dripos.cross-file -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/ironclad.cross-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ci/ironclad.cross-file -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/kot.cross-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ci/kot.cross-file -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/lemon.cross-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ci/lemon.cross-file -------------------------------------------------------------------------------- /sources/core/libs/mlibc/ci/lyre.cross-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/ci/lyre.cross-file -------------------------------------------------------------------------------- /sources/core/libs/mlibc/internal-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/internal-config.h.in -------------------------------------------------------------------------------- /sources/core/libs/mlibc/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/meson.build -------------------------------------------------------------------------------- /sources/core/libs/mlibc/meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/meson_options.txt -------------------------------------------------------------------------------- /sources/core/libs/mlibc/mlibc-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/mlibc-config.h.in -------------------------------------------------------------------------------- /sources/core/libs/mlibc/options/bsd/include/arpa/nameser_compat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/options/glibc/include/sys/endian.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/options/glibc/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/options/glibc/include/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/options/linux/include/lastlog.h: -------------------------------------------------------------------------------- 1 | // Maches glibc 2 | #include -------------------------------------------------------------------------------- /sources/core/libs/mlibc/options/posix/include/sys/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/scripts/abi-link.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/scripts/abi-link.sh -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/aero/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/reboot.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/aero/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/dripos/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/dripos/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/dripos/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/ironclad/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/ironclad/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/reboot.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/ironclad/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/ironclad/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/reboot.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/vt.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/vt.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/kot/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/lemon/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/reboot.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lemon/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/reboot.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/vt.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/vt.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/linux/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/reboot.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/lyre/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/access.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/access.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/auxv.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/managarm/auxv.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/blkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/blksize_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/blksize_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/clockid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/clockid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/dev_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/dev_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/epoll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/epoll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/errno.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/errno.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/fcntl.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/fcntl.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/fsblkcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsblkcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/fsfilcnt_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/fsfilcnt_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/gid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/gid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/in.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/in.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/ino_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ino_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/inotify.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/inotify.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/ioctls.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/ioctls.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/limits.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/limits.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/mode_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/mode_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/mqueue.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/mqueue.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/nlink_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/nlink_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/packet.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/packet.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/pid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/pid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/poll.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/poll.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/ptrace.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/ptrace.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/reboot.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/reboot.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/resource.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/resource.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/seek-whence.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/seek-whence.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/shm.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/shm.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/signal.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/signal.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/socket.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/socket.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/socklen_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/socklen_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/stat.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/stat.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/statfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/statvfs.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/statvfs.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/suseconds_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/suseconds_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/termios.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/termios.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/time.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/time.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/uid_t.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/uid_t.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/utsname.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/utsname.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/vm-flags.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/mlibc/vm-flags.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/wait.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/wait.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/sysdeps/managarm/include/abi-bits/xattr.h: -------------------------------------------------------------------------------- 1 | ../../../../abis/linux/xattr.h -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/abs.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/alloc.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/fenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/fenv.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/fopen.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/locale.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/longjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/longjmp.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/memmem.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/qsort.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/snprintf.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/sprintf.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/sscanf.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/strchr.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/strftime.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/strrchr.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/strtol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/strtol.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/timegm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/timegm.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/ungetc.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/utf8.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/wcsdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/wcsdup.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/ansi/wmemcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/ansi/wmemcmp.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/bsd/sbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/bsd/sbrk.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/bsd/strl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/bsd/strl.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/glibc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/glibc/error.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/glibc/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/glibc/error.py -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/glibc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/glibc/getopt.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/linux/cpuset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/linux/cpuset.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/linux/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/linux/xattr.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/meson.build -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/abort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/abort.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/accept4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/accept4.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/access.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/alarm.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/dprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/dprintf.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/fdopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/fdopen.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/ffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/ffs.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/getcwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/getcwd.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/grp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/grp.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/index.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/memrchr.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/pause.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/popen.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/pwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/pwd.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/regex.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/rindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/rindex.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/rlimits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/rlimits.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/search.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/strdupa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/strdupa.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/string.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/system.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/time.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/timer.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/vfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/vfork.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/wcwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/wcwidth.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/posix/wordexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/libs/mlibc/tests/posix/wordexp.c -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/dl_iterate_phdr/libfoo.c: -------------------------------------------------------------------------------- 1 | int foo() { return 0; } 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/noload-promote/libfoo.c: -------------------------------------------------------------------------------- 1 | void foo() {} 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/scope2/libbaz.c: -------------------------------------------------------------------------------- 1 | char *foo_baz_conflict() { 2 | return "resolved to baz"; 3 | } 4 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/scope2/libfoo.c: -------------------------------------------------------------------------------- 1 | char *foo_baz_conflict() { 2 | return "resolved to foo"; 3 | } 4 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/scope3/libfoo.c: -------------------------------------------------------------------------------- 1 | int g = 0; 2 | 3 | int call_foo() { 4 | return g; 5 | } 6 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/scope4/libbaz.c: -------------------------------------------------------------------------------- 1 | void baz() {} 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/scope5/libfoo.c: -------------------------------------------------------------------------------- 1 | void foo() {} 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/soname/libbar.c: -------------------------------------------------------------------------------- 1 | char *name() { return "bar"; } 2 | -------------------------------------------------------------------------------- /sources/core/libs/mlibc/tests/rtdl/soname/libfoo.c: -------------------------------------------------------------------------------- 1 | char *name() { return "foo"; } 2 | -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/controller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/controller.c -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/controller.h -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/device.c -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/device.h -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/main.h -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/port.c -------------------------------------------------------------------------------- /sources/core/modules/ahci/source/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ahci/source/port.h -------------------------------------------------------------------------------- /sources/core/modules/boot/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/boot/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/boot/source/tga/tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/boot/source/tga/tga.c -------------------------------------------------------------------------------- /sources/core/modules/boot/source/tga/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/boot/source/tga/tga.h -------------------------------------------------------------------------------- /sources/core/modules/devconsole/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devconsole/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/devfb/source/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devfb/source/interface.c -------------------------------------------------------------------------------- /sources/core/modules/devfb/source/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devfb/source/key.c -------------------------------------------------------------------------------- /sources/core/modules/devfb/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devfb/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/devfs/source/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devfs/source/core.c -------------------------------------------------------------------------------- /sources/core/modules/devfs/source/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devfs/source/core.h -------------------------------------------------------------------------------- /sources/core/modules/devfs/source/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devfs/source/interface.c -------------------------------------------------------------------------------- /sources/core/modules/devfs/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devfs/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/devpower/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/devpower/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/e1000/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/e1000/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/fat32/source/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/fat32/source/core.c -------------------------------------------------------------------------------- /sources/core/modules/fat32/source/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/fat32/source/core.h -------------------------------------------------------------------------------- /sources/core/modules/fat32/source/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/fat32/source/interface.c -------------------------------------------------------------------------------- /sources/core/modules/fat32/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/fat32/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/hid/source/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/hid/source/interface.c -------------------------------------------------------------------------------- /sources/core/modules/hid/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/hid/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/arp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/arp.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/arp.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/dhcp.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/dhcp.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/dhcp_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/dhcp_header.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/ethernet.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/ethernet.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/interface.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/interface.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/ip.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/ip.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/main.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/protocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/protocols.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/socket.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/socket.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/tcp.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/tcp.h -------------------------------------------------------------------------------- /sources/core/modules/net/source/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/udp.c -------------------------------------------------------------------------------- /sources/core/modules/net/source/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/net/source/udp.h -------------------------------------------------------------------------------- /sources/core/modules/pci/source/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/device.c -------------------------------------------------------------------------------- /sources/core/modules/pci/source/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/interface.c -------------------------------------------------------------------------------- /sources/core/modules/pci/source/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/list.c -------------------------------------------------------------------------------- /sources/core/modules/pci/source/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/list.h -------------------------------------------------------------------------------- /sources/core/modules/pci/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/pci/source/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/main.h -------------------------------------------------------------------------------- /sources/core/modules/pci/source/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/pci.c -------------------------------------------------------------------------------- /sources/core/modules/pci/source/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/pcie.c -------------------------------------------------------------------------------- /sources/core/modules/pci/source/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/pci/source/pcie.h -------------------------------------------------------------------------------- /sources/core/modules/ps2/source/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ps2/source/core.c -------------------------------------------------------------------------------- /sources/core/modules/ps2/source/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ps2/source/core.h -------------------------------------------------------------------------------- /sources/core/modules/ps2/source/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ps2/source/keyboard.c -------------------------------------------------------------------------------- /sources/core/modules/ps2/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ps2/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/ps2/source/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/ps2/source/mouse.c -------------------------------------------------------------------------------- /sources/core/modules/rtc/source/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/rtc/source/core.c -------------------------------------------------------------------------------- /sources/core/modules/rtc/source/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/rtc/source/core.h -------------------------------------------------------------------------------- /sources/core/modules/rtc/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/rtc/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/storage/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/storage/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/storage/source/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/storage/source/main.h -------------------------------------------------------------------------------- /sources/core/modules/test/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/test/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/vfs/source/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/vfs/source/core.c -------------------------------------------------------------------------------- /sources/core/modules/vfs/source/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/vfs/source/core.h -------------------------------------------------------------------------------- /sources/core/modules/vfs/source/initrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/vfs/source/initrd.c -------------------------------------------------------------------------------- /sources/core/modules/vfs/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/vfs/source/main.c -------------------------------------------------------------------------------- /sources/core/modules/vfs/source/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/vfs/source/system.c -------------------------------------------------------------------------------- /sources/core/modules/vfs/source/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/core/modules/vfs/source/system.h -------------------------------------------------------------------------------- /sources/extern/.gitignore: -------------------------------------------------------------------------------- 1 | ** 2 | !.gitignore 3 | !makefile 4 | -------------------------------------------------------------------------------- /sources/extern/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/extern/makefile -------------------------------------------------------------------------------- /sources/tools/.gitignore: -------------------------------------------------------------------------------- 1 | ** 2 | !.gitignore 3 | !build.sh 4 | !ksym.c -------------------------------------------------------------------------------- /sources/tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/tools/build.sh -------------------------------------------------------------------------------- /sources/tools/ksym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/sources/tools/ksym.c -------------------------------------------------------------------------------- /target/.gitignore: -------------------------------------------------------------------------------- 1 | liamd 2 | liarm 3 | boot_disk_kot_mount 4 | *.bin 5 | serial_output.txt -------------------------------------------------------------------------------- /target/boot-disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/boot-disk.sh -------------------------------------------------------------------------------- /target/build/liamd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/build/liamd.sh -------------------------------------------------------------------------------- /target/disk.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/disk.cfg -------------------------------------------------------------------------------- /target/host-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/host-installer.sh -------------------------------------------------------------------------------- /target/initrd/system/console/fonts/vga.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/initrd/system/console/fonts/vga.bin -------------------------------------------------------------------------------- /target/initrd/system/default/scancode.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/initrd/system/default/scancode.scd -------------------------------------------------------------------------------- /target/initrd/system/starter/modules.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/initrd/system/starter/modules.cfg -------------------------------------------------------------------------------- /target/initrd/tools/.gitignore: -------------------------------------------------------------------------------- 1 | ** 2 | !.gitignore 3 | !build.sh 4 | !ksym.c 5 | -------------------------------------------------------------------------------- /target/initrd/tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/initrd/tools/build.sh -------------------------------------------------------------------------------- /target/initrd/tools/ksym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/initrd/tools/ksym.c -------------------------------------------------------------------------------- /target/limine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/limine.cfg -------------------------------------------------------------------------------- /target/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kot-org/Kot/HEAD/target/makefile --------------------------------------------------------------------------------