define __KERNEL_STRICT_NAMES to avoid inclusion of kernel types on systems that carry...
[cake.git] / rom / exec / idletask.c
blob6d1e46ba51ff7efe611a9c6cc69869e1de3dbfa0
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Idle task.
6 Lang: english
7 */
9 #include <exec/types.h>
10 #include <exec/execbase.h>
12 void idleTask(struct ExecBase *SysBase)
14 while(1)
17 If you can do something here that doesn't busy wait,
18 you should reimplement it elsewhere.
20 See config/unix/exec/idletask.c for what I mean.