summaryrefslogtreecommitdiffstats
path: root/dev-tools/debugging-tools/endless.c
blob: 22c9bc50c843b42b8d6020ceaecd4407f45442ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

int main(int argc, char *argv[]) {
    // Provides a dummy worker.
    while (1)
        sleep(999999999);
}