repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git]
/
arch
/
.unmaintained
/
arm-all
/
exec
/
idletask.c
blob
163eebd353d456c6aa0884f94a89dd844bf1adf6
1
/*
2
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <exec/types.h>
7
#include <asm/registers.h>
8
9
#include <proto/exec.h>
10
11
#define DEBUG 0
12
#include <aros/debug.h>
13
14
void
idleTask
(
void
)
15
{
16
ULONG i
=
0
;
17
while
(
1
) {
18
if
(
0
== (
i
%
5000000
)) {
19
D
(
bug
(
"idle Task tick!
\n
"
));
20
}
21
i
++;
22
}
23
}