*** empty log message ***
This commit is contained in:
parent
2662df9632
commit
2bd6c0f136
1 changed files with 33 additions and 4 deletions
|
@ -1,3 +1,4 @@
|
|||
#include <wait.h>
|
||||
#include "libnazgul.h"
|
||||
|
||||
int main(void) {
|
||||
|
@ -21,10 +22,38 @@ int main(void) {
|
|||
printf("RequestedId: %s\n",testId);
|
||||
|
||||
mSPAC=msgSpaceCreate(testId,0,3,poolInfos);
|
||||
|
||||
pid_t pid=fork();
|
||||
|
||||
montext=msgAllocate(mSPAC,ANYPOOL,270,0);
|
||||
// msgFree(mSPAC,(void *)montext);
|
||||
msgSpaceDelete(testId);
|
||||
|
||||
|
||||
|
||||
if (pid ==0){
|
||||
mSPAC=msgSpaceOpen(testId);
|
||||
sleep(2);
|
||||
montext=msgAllocate(mSPAC,2,180,0);
|
||||
printf("ALLOC %d.. ok\n",(int)getpid());
|
||||
sleep(2);
|
||||
montext=msgAllocate(mSPAC,2,170,0);
|
||||
printf("ALLOC %d.. ok\n",(int)getpid());
|
||||
sleep(2);
|
||||
montext=msgAllocate(mSPAC,2,270,0);
|
||||
printf("ALLOC %d.. ok\n",(int)getpid());
|
||||
|
||||
} else {
|
||||
mSPAC=msgSpaceOpen(testId);
|
||||
montext=msgAllocate(mSPAC,2,280,0);
|
||||
printf("ALLOC %d.. ok\n",(int)getpid());
|
||||
sleep(2);
|
||||
montext=msgAllocate(mSPAC,2,270,0);
|
||||
printf("ALLOC %d.. ok\n",(int)getpid());
|
||||
sleep(2);
|
||||
montext=msgAllocate(mSPAC,2,270,0);
|
||||
printf("ALLOC %d.. ok\n",(int)getpid());
|
||||
//msgFree(mSPAC,(void *)montext);
|
||||
//msgFree(mSPAC,(void *)montext);
|
||||
//msgFree(mSPAC,(void *)montext);
|
||||
wait(NULL);
|
||||
msgSpaceDelete(testId);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue