Revisione di open(2) e documentazione O_PATH (inizio).
[gapil.git] / listati / HandSigInt.c
1 void HandSigInt(int sig)
2 {
3     if (RemoveShm(shmname) != 0) perror("Cannot remove shared memory");
4     if (sem_unlink(semname)!= 0) perror("Cannot remove semaphore") ;
5     exit(0);
6 }