diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-07-12 15:24:36 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-07-12 15:24:36 +0200 |
commit | b2f7f066dbeed346e6d70414593cad2d918c2bd4 (patch) | |
tree | 14d61f487fadc109e38485e74e65fb7741ffe5e8 /src/arch/posix | |
parent | 7f6b7ecfb0fb60a08dcc6c174d313eee052a94dc (diff) |
Add arch.idle() command
Diffstat (limited to 'src/arch/posix')
-rw-r--r-- | src/arch/posix/arch.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/posix/arch.cc b/src/arch/posix/arch.cc index efcf90e..54ee8e1 100644 --- a/src/arch/posix/arch.cc +++ b/src/arch/posix/arch.cc @@ -10,4 +10,8 @@ void Arch::idle_loop(void) } } +void Arch::idle(void) +{ +} + Arch arch; |