////////////////////////////////////////////////////////////////////////////// // Course: Real Time Systems // Lecturer: Dr.-Ing. Frank Golatowski // Exercise instructor: M.Sc. Michael Rethfeldt // Exercise: 2 // Task: 1 // Name: aufgabe1_sohn.c // Description: Son process ////////////////////////////////////////////////////////////////////////////// #include #include #include #include int main(void) { printf("I am the son.\n"); return 0; }