diff options
Diffstat (limited to 'include/apos')
| -rw-r--r-- | include/apos/syscalls.h | 2 | ||||
| -rw-r--r-- | include/apos/tcb.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/apos/syscalls.h b/include/apos/syscalls.h index e89d07a..e1513c4 100644 --- a/include/apos/syscalls.h +++ b/include/apos/syscalls.h @@ -40,7 +40,7 @@ enum { SYS_EXEC, /* execute new binary in process space */ SYS_KILL, /* kill thread */ SYS_SIGNAL, /* send signal to process (kill etc.) */ - SYS_SWAP /* switch running process */ + SYS_SWAP, /* switch running process */ /* kernel management */ SYS_CONF, /* config system parameters (stack size etc.) */ diff --git a/include/apos/tcb.h b/include/apos/tcb.h index 89b594d..572041d 100644 --- a/include/apos/tcb.h +++ b/include/apos/tcb.h @@ -8,7 +8,7 @@ #include <apos/mem_regions.h> #include <apos/types.h> -#include <tcb.h> /* arch-specific data */ +#include <arch/tcb.h> /* arch-specific data */ /* process(/main) threads don't have any previous threads */ #define is_proc(t) (!t->prev) |
