int semget(key_t IdentifiantSemaphore, int CompteurInitial, int Masque);
Soit il s'agit de :
Le résultat est le numéro du sémaphore.
int Semaphore;
#include <stdio.h>
#include <sem.h>
Semaphore=semget((key_t)12345, 1, 0666|IPC_CREAT|IPC_EXCL);
if (Semaphore==-1)
{
...
}
...
if (semctl(Semaphore, 0, IPC_RMID, NULL)==-1)
{
...
}
...