diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-23 19:40:08 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-23 19:40:08 +0200 |
commit | 48de0cd029b52f64f76345b6e1fdf3cde5c58de3 (patch) | |
tree | 792061381c556bef6639b327716cca107f6168c5 /Source/Kernel/Shell | |
parent | f0556ed7f051fb101dc68752526696365bf79a11 (diff) | |
download | Melon-48de0cd029b52f64f76345b6e1fdf3cde5c58de3.tar.gz Melon-48de0cd029b52f64f76345b6e1fdf3cde5c58de3.zip |
More work on syscalls and shell
Diffstat (limited to 'Source/Kernel/Shell')
-rw-r--r-- | Source/Kernel/Shell/KernelShell.class.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Kernel/Shell/KernelShell.class.cpp b/Source/Kernel/Shell/KernelShell.class.cpp index 53e5ec1..cd897f2 100644 --- a/Source/Kernel/Shell/KernelShell.class.cpp +++ b/Source/Kernel/Shell/KernelShell.class.cpp @@ -8,8 +8,6 @@ u32int KernelShell::m_instances = 0; -#define COMMAND(name, wat) {(void*)name, (void*)(&KernelShell::wat)}, - u32int shellRun(void* ks) { KernelShell* sh = (KernelShell*)ks; u32int ret = sh->run(); |