serenity/LibC
Andreas Kling 3c8064a787 Support basic mmap'ing of a file!
All right, we can now mmap() a file and it gets magically paged in from fs
in response to an NP page fault. This is really cool :^)

I need to refactor this to support sharing of read-only file-backed pages,
but it's cool to just have something working.
2018-11-08 12:59:16 +01:00
..
sys Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
.gitignore Import very modest Userland. 2018-10-22 14:06:22 +02:00
alloca.h More LibC portability work while trying to get figlet building. 2018-10-31 10:14:56 +01:00
assert.cpp Tidy up ELFLoader. 2018-11-04 14:11:16 +01:00
assert.h Mark LibC's assertion faillure helper with __NORETURN. 2018-11-04 13:13:57 +01:00
ctype.h Add getpwent() family of functions to LibC. 2018-10-31 19:54:25 +01:00
dirent.cpp Change syscall naming scheme. 2018-11-06 13:33:54 +01:00
dirent.h More work towards getting bash to build. 2018-11-05 19:01:59 +01:00
endian.h Lots of minor compat stuff while seeing if bash would build. 2018-11-05 16:40:48 +01:00
entry.cpp Start working on memory-mapped files. 2018-11-08 11:40:58 +01:00
errno.h Add sys_nerr and sys_errlist. 2018-11-06 14:42:28 +01:00
errno_numbers.h Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
fcntl.h Lots of minor compat stuff while seeing if bash would build. 2018-11-05 16:40:48 +01:00
getopt.cpp Enough compatibility work to make figlet build and run! 2018-10-31 17:52:59 +01:00
getopt.h Enough compatibility work to make figlet build and run! 2018-10-31 17:52:59 +01:00
grp.cpp Start working on memory-mapped files. 2018-11-08 11:40:58 +01:00
grp.h Add some basic setgroups(), getgroups() and initgroups(). 2018-11-07 01:38:51 +01:00
limits.h Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
Makefile Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
mman.cpp Start working on memory-mapped files. 2018-11-08 11:40:58 +01:00
mman.h Support basic mmap'ing of a file! 2018-11-08 12:59:16 +01:00
mntent.cpp Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
mntent.h Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
process.cpp Change syscall naming scheme. 2018-11-06 13:33:54 +01:00
process.h Share code between spawn() and exec() implementations. 2018-11-03 10:55:02 +01:00
pwd.cpp Start working on memory-mapped files. 2018-11-08 11:40:58 +01:00
pwd.h Add getpwent() family of functions to LibC. 2018-10-31 19:54:25 +01:00
scanf.cpp Lots of minor compat stuff while seeing if bash would build. 2018-11-05 16:40:48 +01:00
setjmp.cpp Lots of minor compat stuff while seeing if bash would build. 2018-11-05 16:40:48 +01:00
setjmp.h Lots of minor compat stuff while seeing if bash would build. 2018-11-05 16:40:48 +01:00
signal.cpp Add strsignal() and improve sharing signal numbers between LibC and kernel. 2018-11-06 15:45:16 +01:00
signal.h Add strsignal() and improve sharing signal numbers between LibC and kernel. 2018-11-06 15:45:16 +01:00
signal_numbers.h Add strsignal() and improve sharing signal numbers between LibC and kernel. 2018-11-06 15:45:16 +01:00
stat.cpp Add strsignal() and improve sharing signal numbers between LibC and kernel. 2018-11-06 15:45:16 +01:00
stdarg.h A bunch of LibC boilerplate stuff added while trying to get figlet to build. 2018-10-31 02:09:11 +01:00
stddef.h Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
stdint.h Miscellaneous compat work while seeing if GNU coreutils would build. 2018-11-07 10:23:16 +01:00
stdio.cpp Add some simple write buffering to LibC's stdio. 2018-11-08 01:23:47 +01:00
stdio.h Add some simple write buffering to LibC's stdio. 2018-11-08 01:23:47 +01:00
stdlib.cpp Start working on memory-mapped files. 2018-11-08 11:40:58 +01:00
stdlib.h Add some basic signal support. 2018-11-06 10:56:41 +01:00
string.cpp Add strsignal() and improve sharing signal numbers between LibC and kernel. 2018-11-06 15:45:16 +01:00
string.h Add strsignal() and improve sharing signal numbers between LibC and kernel. 2018-11-06 15:45:16 +01:00
termcap.cpp More random compat hacking towards getting bash to build. 2018-11-05 18:21:42 +01:00
termcap.h More random compat hacking towards getting bash to build. 2018-11-05 18:21:42 +01:00
termios.h More random compat hacking towards getting bash to build. 2018-11-05 18:21:42 +01:00
time.cpp Change syscall naming scheme. 2018-11-06 13:33:54 +01:00
time.h Lots of minor compat stuff while seeing if bash would build. 2018-11-05 16:40:48 +01:00
times.cpp Lots of minor compat stuff while seeing if bash would build. 2018-11-05 16:40:48 +01:00
unistd.cpp Oops, waitpid() was not passing the options parameter to the kernel. 2018-11-07 10:46:48 +01:00
unistd.h Add some basic setgroups(), getgroups() and initgroups(). 2018-11-07 01:38:51 +01:00
utsname.cpp Change syscall naming scheme. 2018-11-06 13:33:54 +01:00
utsname.h A bunch of LibC boilerplate stuff added while trying to get figlet to build. 2018-10-31 02:09:11 +01:00