diff options
author | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-19 18:53:15 +0100 |
---|---|---|
committer | Alex Auvolat <alex.auvolat@ens.fr> | 2015-02-19 18:53:15 +0100 |
commit | 62e5a35940198f0f8fbabdf31c80455647420c4e (patch) | |
tree | d73846d90d0611125eb99b53e473f8bc76c7fa15 /src/kernel/core/idt.c | |
parent | 277b329c5609b8172ad0c142117edfa9a08279da (diff) | |
download | kogata-62e5a35940198f0f8fbabdf31c80455647420c4e.tar.gz kogata-62e5a35940198f0f8fbabdf31c80455647420c4e.zip |
Several things :
- disambiguate syscall.h : kernel syscall.h moved to sct.h
- fix btree_remove_v !! (munmap fucked up stuff before)
- make nullfs's directory listing non-exclusive (it actually copies the
listing on open() and readdir()'s from that copy)
Diffstat (limited to 'src/kernel/core/idt.c')
-rw-r--r-- | src/kernel/core/idt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/core/idt.c b/src/kernel/core/idt.c index 0459a21..abab3cc 100644 --- a/src/kernel/core/idt.c +++ b/src/kernel/core/idt.c @@ -4,7 +4,7 @@ #include <string.h> #include <dbglog.h> #include <thread.h> -#include <syscall.h> +#include <sct.h> struct idt_entry { uint16_t base_lo; //Low part of address to jump to |