summaryrefslogtreecommitdiff
path: root/src/README
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-05-31 18:31:38 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-05-31 18:31:38 +0200
commitd081f5449b3e84d571ad3f8907bd7ab57d3d63a4 (patch)
treec66a08aa9a53a928a7c221df8a25b34c9be6a8c8 /src/README
parent3d2b8fb9dbc73e303b54f1517ee5f4feca364265 (diff)
downloadabaos-d081f5449b3e84d571ad3f8907bd7ab57d3d63a4.tar.gz
abaos-d081f5449b3e84d571ad3f8907bd7ab57d3d63a4.tar.bz2
added a setjmp implementation
kernel_panic uses a longjmp to terminate the kernel entry function some segfault in scroll_screen
Diffstat (limited to 'src/README')
-rw-r--r--src/README9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/README b/src/README
index 4b120dc..620fab3 100644
--- a/src/README
+++ b/src/README
@@ -16,6 +16,11 @@ kernel utility routines
* port.c, port.asm - I/O ports
* interrupts.c, interrups.asm - interrupt handlers
+C library definitions
+* stddef.h - definition of NULL, size_t
+* limits.h - domain range constants like INT_MAX
+
C library routines
-* string.c
-* stdlib.c
+* string.c - string, memory functions
+* stdlib.c - UNIX standard library functions
+* stdio.c - I/O functions, printing