diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-14 17:36:03 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-14 17:36:03 +0100 |
commit | 74ea640f40285220dfa93492a143a35426b867d1 (patch) | |
tree | 726fea60a2e0a9f835212228238bdc479012b2f8 /src/lib | |
parent | ba53137f1b687b1c9cbd66fbe306ed1bf6d0cccb (diff) | |
download | kogata-74ea640f40285220dfa93492a143a35426b867d1.tar.gz kogata-74ea640f40285220dfa93492a143a35426b867d1.zip |
Add binary tree implementation. NOT TESTED, FULL OF BUGS.
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libkogata/debug.c | 2 | ||||
-rw-r--r-- | src/lib/libkogata/malloc.c | 1 | ||||
-rw-r--r-- | src/lib/libkogata/start.c | 1 | ||||
-rw-r--r-- | src/lib/libkogata/syscall.c | 2 |
4 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/libkogata/debug.c b/src/lib/libkogata/debug.c index 27c9e28..9688877 100644 --- a/src/lib/libkogata/debug.c +++ b/src/lib/libkogata/debug.c @@ -11,3 +11,5 @@ void panic_assert(const char* assert, const char* file, int line) { // TODO while(true); } + +/* vim: set ts=4 sw=4 tw=0 noet :*/ diff --git a/src/lib/libkogata/malloc.c b/src/lib/libkogata/malloc.c index c776cdf..272dd7d 100644 --- a/src/lib/libkogata/malloc.c +++ b/src/lib/libkogata/malloc.c @@ -9,3 +9,4 @@ void free(void* ptr) { // TODO } +/* vim: set ts=4 sw=4 tw=0 noet :*/ diff --git a/src/lib/libkogata/start.c b/src/lib/libkogata/start.c index 9ba7edf..984a3cd 100644 --- a/src/lib/libkogata/start.c +++ b/src/lib/libkogata/start.c @@ -10,3 +10,4 @@ void __libkogata_start() { exit(ret); } +/* vim: set ts=4 sw=4 tw=0 noet :*/ diff --git a/src/lib/libkogata/syscall.c b/src/lib/libkogata/syscall.c index 342426b..b9cefa7 100644 --- a/src/lib/libkogata/syscall.c +++ b/src/lib/libkogata/syscall.c @@ -14,3 +14,5 @@ void yield() { void exit(int code) { asm volatile("int $0x40"::"a"(SC_EXIT),"b"(code)); } + +/* vim: set ts=4 sw=4 tw=0 noet :*/ |