m2.hang-detector/src/test.c

14 lines
161 B
C
Raw Permalink Normal View History

2006-03-13 13:04:40 +00:00
/* vim: set sw=4 ts=4 si et: */
2006-03-01 21:40:31 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(){
while(1){
sleep(1);
printf("Loooooping \n");
}
}