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
revert 213 commits (to 56092) from the last month. 10 still need work to resolve...
[AROS.git]
/
developer
/
debug
/
test
/
misc
/
busyloop.c
blob
a9cd7350a52402ce9277921248416179cbe9984d
1
/*
2
Copyright © 2017, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
/*
7
* Busy loop forever ...
8
* TOOD: make it launch a task on a specified processor that
9
* busy loops until it is sent a signal.
10
*/
11
12
int
main
(
void
)
13
{
14
do
15
{
16
}
17
while
(
1
);
18
19
return
0
;
20
}