2004-02-22 13:11:17 +00:00
|
|
|
#include "libnazgul.h"
|
|
|
|
#include "nzg_ids.h"
|
|
|
|
|
|
|
|
int msgPoolCreate(
|
2004-02-22 15:29:36 +00:00
|
|
|
msgSpaceId externId,
|
2004-02-22 13:11:17 +00:00
|
|
|
int poolIdx,
|
|
|
|
int buffNb,
|
|
|
|
int buffSize
|
|
|
|
) {
|
|
|
|
|
|
|
|
int poolFd;
|
|
|
|
sem_t * ressourceSem;
|
|
|
|
msgPoolId poolId;
|
|
|
|
msgPoolSemId poolRessourceSemId;
|
|
|
|
|
|
|
|
/* creation des buffers DEBUT */
|
2004-02-22 15:29:36 +00:00
|
|
|
if (msgPoolIdIntern(poolId,externId,poolIdx) == -1){
|
2004-02-22 13:11:17 +00:00
|
|
|
fprintf( stderr, "msgPoolId creation failed for id %s\n", (char*)poolId );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
poolFd=shm_open(poolId,O_RDWR|O_CREAT|O_EXCL|O_TRUNC,MSGSPACE_DEFAULT_MODE);
|
|
|
|
if (poolFd == -1 ) {
|
2004-02-22 15:29:36 +00:00
|
|
|
fprintf( stderr, "msgPool : %s creation failed: %s\n",poolId,
|
|
|
|
strerror( errno ) );
|
|
|
|
return -1;
|
2004-02-22 13:11:17 +00:00
|
|
|
}
|
|
|
|
if (ftruncate(poolFd, (buffSize*buffNb)) == -1){
|
2004-02-22 15:29:36 +00:00
|
|
|
fprintf( stderr, "msgPool resizing failed: %s\n",
|
|
|
|
strerror( errno ) );
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
/* creation des buffers FIN */
|
|
|
|
|
|
|
|
if (msgPoolSemIdIntern(poolRessourceSemId,externId,poolIdx) == -1){
|
2004-02-22 13:11:17 +00:00
|
|
|
fprintf( stderr, "msgPoolId creation failed for id %s\n",
|
2004-02-22 15:29:36 +00:00
|
|
|
(char*)poolRessourceSemId );
|
2004-02-22 13:11:17 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// on met un semaphore sur le pool
|
|
|
|
ressourceSem = sem_open(poolRessourceSemId, O_CREAT|O_EXCL, 0666, buffNb);
|
|
|
|
//TODO: verrifier les erreurs sur l'ouverture de la sem
|
2004-02-22 15:29:36 +00:00
|
|
|
|
2004-02-22 13:11:17 +00:00
|
|
|
// on met le pool a la taille voulue pour qu'il
|
|
|
|
// puisse contenir les buffs
|
|
|
|
|
|
|
|
close(poolFd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|