diff options
author | Richard Braun <rbraun@sceen.net> | 2017-09-02 23:03:40 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-09-02 23:03:40 +0200 |
commit | 608cf884efd9bb0ef6a308814fd22b1c8688fabf (patch) | |
tree | 67a64a116aae6e3ca49e7eaf9a31a90f9e9ef51f /kern/task.c | |
parent | ca45d38bbf535f1dd23df9b71f85cd9c820e0e69 (diff) |
Rework the build system
Diffstat (limited to 'kern/task.c')
-rw-r--r-- | kern/task.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/task.c b/kern/task.c index ab82ad83..16210560 100644 --- a/kern/task.c +++ b/kern/task.c @@ -64,7 +64,7 @@ task_init(struct task *task, const char *name, struct vm_map *map) strlcpy(task->name, name, sizeof(task->name)); } -#ifdef X15_SHELL +#ifdef X15_ENABLE_SHELL static void task_shell_info(int argc, char *argv[]) @@ -112,7 +112,7 @@ INIT_OP_DEFINE(task_setup_shell, INIT_OP_DEP(task_setup, true), INIT_OP_DEP(thread_setup, true)); -#endif /* X15_SHELL */ +#endif /* X15_ENABLE_SHELL */ static int __init task_setup(void) |