aboutsummaryrefslogtreecommitdiffstats
path: root/usr/spin.c
blob: 2a3d4e8a780864f3013940996eb1505fe65af730 (plain) (blame)
1
2
3
4
5
6
#include "gbos.h"
/* spin: a harmless long-running process that just yields forever.
   Useful as a target for `ps` and `kill`. */
void main(void) {
    for (;;) yield();
}