1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
void contare(char *file);
int n,a, status, terminazione;
char *file_in, *file_out;
int main(int argc, char *argv[])
{
int send, pid[MAX],fd, i;
file_in = argv[1];
i=0;
for(i=0; i<2; i++);
{
pid[i]=fork();
if ( pid[i] == 0 )
{
contare(file_in);
exit(0);
}
if ( pid > 0 )
{
printf(" Creato figlio %d \n ", pid[i]);
for ( i=0; i<2; i++ )
{
terminazione = wait(&status);
if (terminazione == 0)
printf("Figlio non terminato bene. %d \n", status);
else
printf("Figlio %d terminato %d \n", terminazione, status);
}
}
}
return;
}
void contare(char *file)
{
printf("%c \n\n", a);
int fd = open(file, O_RDONLY);
if ( fd < 0 )
{
perror("Failure nell apertura");
exit(EXIT_FAILURE);
}
else
printf("File %s aperto. \n", file_in);
close(fd);
return;
}
|