21 lines
523 B
C
21 lines
523 B
C
//////////////////////////////////////////////////////////////////////////////
|
|
// Course: Real Time Systems
|
|
// Lecturer: Dr.-Ing. Frank Golatowski
|
|
// Exercise instructor: M.Sc. Michael Rethfeldt
|
|
// Exercise: 1
|
|
// Task: zusatz1
|
|
// Name: zusatz1.c
|
|
// Description: ?
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
fork();
|
|
fork();
|
|
printf("test\n");
|
|
}
|
|
|