l3.libnazgul/test/create_delete.c

54 lines
1,015 B
C
Raw Normal View History

2004-02-22 22:00:23 +00:00
#include <wait.h>
2004-02-22 17:39:08 +00:00
#include "libnazgul.h"
2004-02-16 21:25:11 +00:00
int main(void) {
2019-09-16 15:15:37 +00:00
// msgSpace mS=0;
msgSpaceId testId;
msgSpace * mSPAC;
2004-02-22 17:49:02 +00:00
msgPool poolInfos[3];
2004-02-22 15:29:36 +00:00
char * montext;
2019-09-16 15:15:37 +00:00
poolInfos[0].bufferNb=4;
poolInfos[0].bufferSize=200;
2004-02-22 15:29:36 +00:00
poolInfos[1].bufferNb=5;
poolInfos[1].bufferSize=250;
2004-02-22 17:49:02 +00:00
2004-02-23 16:22:44 +00:00
poolInfos[2].bufferNb=5;
2004-02-22 18:09:05 +00:00
poolInfos[2].bufferSize=280;
2019-09-17 12:04:41 +00:00
strcpy(testId,"test");
printf("RequestedId: %s\n",testId);
2004-02-22 17:49:02 +00:00
mSPAC=msgSpaceCreate(testId,0,3,poolInfos);
2004-02-22 22:00:23 +00:00
pid_t pid=fork();
2004-02-22 15:29:36 +00:00
2004-02-22 22:00:23 +00:00
if (pid ==0){
mSPAC=msgSpaceOpen(testId);
sleep(2);
montext=msgAllocate(mSPAC,2,180,0);
sleep(2);
montext=msgAllocate(mSPAC,2,170,0);
sleep(2);
montext=msgAllocate(mSPAC,2,270,0);
} else {
mSPAC=msgSpaceOpen(testId);
montext=msgAllocate(mSPAC,2,280,0);
sleep(2);
montext=msgAllocate(mSPAC,2,270,0);
sleep(2);
montext=msgAllocate(mSPAC,2,270,0);
2004-02-23 16:22:44 +00:00
msgFree(mSPAC,(void *)montext);
2004-02-22 22:00:23 +00:00
//msgFree(mSPAC,(void *)montext);
//msgFree(mSPAC,(void *)montext);
wait(NULL);
msgSpaceDelete(testId);
}
2004-02-16 21:25:11 +00:00
return 0;
}