COSMOS core  1.0.2 (beta)
Comprehensive Open-architecture Solution for Mission Operations Systems
delay.c File Reference
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
Include dependency graph for delay.c:

Functions

int main ()
 

Function Documentation

int main ( )
35 {
36  printf("This c program will exit in 10 seconds.\n");
37 
38  //delay(1000);
39  usleep(1000000);
40 
41  return 0;
42 }