ladybird/Libraries/LibC
Andreas Kling 30dbe9c78a Kernel+LibC: Add a very limited sys$mremap() implementation
This syscall can currently only remap a shared file-backed mapping into
a private file-backed mapping.
2020-12-29 02:20:43 +01:00
..
arpa LibC: Fix a warning when building LibC with -O2 2020-10-20 18:10:22 +02:00
bits LibC: Add POSIX1 minimum limits to limits.h 2020-11-10 14:39:38 +01:00
net
netinet LibC: Add some missing netinet macros required by OpenSSH 2020-09-27 01:02:11 +02:00
sys Kernel+LibC: Introduce a "dumpable" flag for processes 2020-12-25 19:35:55 +01:00
alloca.h
assert.cpp LibC: Make it possible to use ASSERTs without initializing stdio 2020-12-14 23:05:53 +01:00
assert.h LibC: Unbreak assert.h when compiled with a C compiler :^) 2020-12-24 21:06:13 +01:00
byteswap.h
CMakeLists.txt Kernel+LibC: Introduce a "dumpable" flag for processes 2020-12-25 19:35:55 +01:00
crt0.cpp
crt0_shared.cpp Loader: Stabilize loader & Use shared libraries everywhere :^) 2020-12-14 23:05:53 +01:00
crti.S
crtn.S
ctype.cpp LibC: Remove an unneeded string.h include in ctype.h/cpp 2020-09-27 21:15:25 +02:00
ctype.h LibC: Remove an unneeded string.h include in ctype.h/cpp 2020-09-27 21:15:25 +02:00
cxxabi.cpp
dirent.cpp
dirent.h
dlfcn.cpp Loader: Add dynamic loader program 2020-12-14 23:05:53 +01:00
dlfcn.h Loader: Add dynamic loader program 2020-12-14 23:05:53 +01:00
endian.h
errno.h LibC: Add NO_TLS preprocessor flag 2020-12-14 23:05:53 +01:00
errno_numbers.h Kernel+LibC: Don't allow a directory to become a subdirectory of itself 2020-11-01 19:21:19 +01:00
fcntl.cpp
fcntl.h
fd_set.h
float.h
getopt.cpp
getopt.h LibC: Include cdefs.h in getopt.h 2020-09-27 01:02:11 +02:00
grp.cpp
grp.h
iconv.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
inttypes.h LibC: Add SCNu64 and SCNd64 macros for stress-g port 2020-12-21 00:19:45 +01:00
ioctl.cpp
libcinit.cpp LibC: Add NO_TLS preprocessor flag 2020-12-14 23:05:53 +01:00
libgen.cpp
libgen.h
limits.h LibC: Add POSIX1 minimum limits to limits.h 2020-11-10 14:39:38 +01:00
locale.cpp LibC: Use dbgln() in setlocale() 2020-10-30 17:03:28 +01:00
locale.h
malloc.cpp LibC: Fix some incorrect printf usages 2020-12-26 10:05:50 +01:00
mallocdefs.h LibC: Move some of malloc's data structures into mallocdefs.h 2020-11-14 22:51:49 +01:00
memory.h
mman.cpp Kernel+LibC: Add a very limited sys$mremap() implementation 2020-12-29 02:20:43 +01:00
mman.h Kernel+LibC: Add a very limited sys$mremap() implementation 2020-12-29 02:20:43 +01:00
mntent.cpp
mntent.h
netdb.cpp Everywhere: Fix typos 2020-10-02 16:03:17 +02:00
netdb.h
paths.h LibC: Add paths.h with some default mail directory for now 2020-09-27 01:02:11 +02:00
poll.cpp
poll.h Kernel: Move block condition evaluation out of the Scheduler 2020-11-30 13:17:02 +01:00
pwd.cpp
pwd.h
qsort.cpp
regex.h LibJS: Hook up Regex<ECMA262> to RegExpObject and implement `test()' 2020-11-27 21:32:41 +01:00
scanf.cpp LibC: Add FIXME for vsscanf 2020-09-27 01:02:11 +02:00
sched.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00
sched.h
serenity.cpp Kernel+LibC: Use uintptr_t as the main type in the syscall interface 2020-10-12 19:53:25 +02:00
serenity.h Kernel+LibC: Use uintptr_t as the main type in the syscall interface 2020-10-12 19:53:25 +02:00
setjmp.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
setjmp.S
signal.cpp Userland+LibC: Add "kill -l" to show all known signal names/numbers 2020-10-29 23:32:18 +01:00
signal.h Userland+LibC: Add "kill -l" to show all known signal names/numbers 2020-10-29 23:32:18 +01:00
signal_numbers.h
spawn.cpp Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
spawn.h
stat.cpp
stdarg.h
stdbool.h
stddef.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
stdint.h
stdio.cpp LibC: Add fseeko/ftello 2020-12-27 23:05:14 +01:00
stdio.h LibC: Add fseeko/ftello 2020-12-27 23:05:14 +01:00
stdlib.cpp Everywhere: void arguments to C functions 2020-12-26 10:10:27 +01:00
stdlib.h Everywhere: void arguments to C functions 2020-12-26 10:10:27 +01:00
string.cpp LibC: strtok_r() should not go past the last token 2020-11-14 11:24:42 +01:00
string.h
strings.cpp
strings.h
syslog.cpp Everywhere: void arguments to C functions 2020-12-26 10:10:27 +01:00
syslog.h Everywhere: void arguments to C functions 2020-12-26 10:10:27 +01:00
termcap.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00
termcap.h
termios.cpp LibC: Further stub out tcflow() 2020-12-25 12:20:37 +01:00
termios.h
time.cpp Kernel+LibC: Add adjtime(2) 2020-11-10 19:03:08 +01:00
time.h LibC: Enable compiler warnings for scanf and strftime format strings 2020-12-26 10:05:50 +01:00
times.cpp
ulimit.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00
ulimit.h
unistd.cpp Kernel: Remove the per-process icon_id and sys$set_process_icon() 2020-12-27 01:16:56 +01:00
unistd.h Kernel: Remove the per-process icon_id and sys$set_process_icon() 2020-12-27 01:16:56 +01:00
utime.cpp
utime.h
utmp.h LibC: Add missing utmp backwards compatibility hacks and user/dead process macros 2020-09-27 01:02:11 +02:00
utsname.cpp
wchar.cpp
wchar.h