2004-02-16 21:25:11 +00:00
|
|
|
|
|
|
|
|
|
char **msgSpaceIdList(void);
|
|
|
|
|
|
|
|
|
|
void * msgAllocate(
|
|
|
|
|
msgSpace * space, //espace de message concern<72>
|
|
|
|
|
int pool, //num<75>ro de pool ou r<>aliser l'allocation
|
|
|
|
|
int taille, //si l'argument pr<70>c<EFBFBD>dent est ANYPOOL, taille requise
|
|
|
|
|
int option // 0 ou NONBLOCK
|
|
|
|
|
);
|
2019-09-16 16:54:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* nzg_create.c */
|
2020-03-03 23:41:24 +01:00
|
|
|
|
msgSpace *msgSpaceCreate(
|
|
|
|
|
msgSpaceId spaceId, int queueNb, int poolNb, msgPool *queueNbCar
|
|
|
|
|
);
|
|
|
|
|
|
2019-09-16 16:54:52 +02:00
|
|
|
|
msgSpace *msgSpaceOpen(msgSpaceId spaceId);
|
|
|
|
|
void msgSpaceDelete(msgSpaceId spaceId);
|
|
|
|
|
msgSpaceId msgSp2nzgId(msgSpaceId spaceId);
|
|
|
|
|
|