13 lines
315 B
C
13 lines
315 B
C
/**
|
|
* @brief Spins in a loop. Useful for testing preemption, cpu usage.
|
|
*
|
|
* @copyright
|
|
* This file is part of ToaruOS and is released under the terms
|
|
* of the NCSA / University of Illinois License - see LICENSE.md
|
|
* Copyright (C) 2018 K. Lange
|
|
*/
|
|
int main(int argc, char * argv[]) {
|
|
while (1);
|
|
return 0;
|
|
}
|