SEM_NAME
sem_unlink(SEM_NAME);
s = sem_open(SEM_NAME, O_CREAT | O_EXCL, 0777, 0);
s2 = sem_open(SEM_NAME, O_CREAT | O_EXCL, 0777, 0);
s3 = sem_open(SEM_NAME, 0);
sem_unlink(SEM_NAME);
s = sem_open(SEM_NAME, O_CREAT, 0777, 0);
s2 = sem_open(SEM_NAME, O_CREAT, 0777, 0);