00001 00043 #define _MAIN_ 00044 #include "h1.h" 00045 00046 00047 00053 int main(void) 00054 { 00055 pid = fork(); 00056 if(pid == -1){printf("Could not fork(). Exiting\n"); return -1;} 00057 00058 if(pid == 0) /* The child */ 00059 { 00060 rs232(); 00061 printf("rs232 stoped!\n"); 00062 } 00063 else /* The parent */ 00064 { 00065 gtk(); 00066 printf("\t\t\t\t gtk stoped!\n"); 00067 } 00068 return 0; 00069 }