2021-11-26 06:41:56 +03:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2021-09-02 15:38:30 +03:00
|
|
|
int main(int argc, char * argv[]) {
|
|
|
|
while (1);
|
|
|
|
return 0;
|
|
|
|
}
|