*** empty log message ***
This commit is contained in:
parent
d59f193804
commit
833ceb23c9
2 changed files with 47 additions and 2 deletions
|
@ -20,7 +20,7 @@ int main(void) {
|
||||||
|
|
||||||
sprintf(testId,"test%d",(int)getuid());
|
sprintf(testId,"test%d",(int)getuid());
|
||||||
printf("RequestedId: %s\n",testId);
|
printf("RequestedId: %s\n",testId);
|
||||||
|
printf("Void size: %d\n",sizeof(void));
|
||||||
mSPAC=msgSpaceCreate(testId,0,3,poolInfos);
|
mSPAC=msgSpaceCreate(testId,0,3,poolInfos);
|
||||||
|
|
||||||
pid_t pid=fork();
|
pid_t pid=fork();
|
||||||
|
@ -41,7 +41,7 @@ int main(void) {
|
||||||
montext=msgAllocate(mSPAC,2,280,0);
|
montext=msgAllocate(mSPAC,2,280,0);
|
||||||
*montext=42;
|
*montext=42;
|
||||||
printf("### test Valeur0 %d ###\n",(int)*montext);
|
printf("### test Valeur0 %d ###\n",(int)*montext);
|
||||||
sleep(2);
|
//sleep(2);
|
||||||
montext=msgAllocate(mSPAC,2,270,0);
|
montext=msgAllocate(mSPAC,2,270,0);
|
||||||
*montext=17;
|
*montext=17;
|
||||||
printf("### test Valeur1 %d ###\n",(int)*montext);
|
printf("### test Valeur1 %d ###\n",(int)*montext);
|
||||||
|
|
45
test/put_get.c
Normal file
45
test/put_get.c
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
#include <wait.h>
|
||||||
|
#include "libnazgul.h"
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
// msgSpace mS=0;
|
||||||
|
|
||||||
|
msgSpaceId testId;
|
||||||
|
msgSpace * mSPAC;
|
||||||
|
msgPool poolInfos[3];
|
||||||
|
char * montext;
|
||||||
|
|
||||||
|
poolInfos[0].bufferNb=4;
|
||||||
|
poolInfos[0].bufferSize=200;
|
||||||
|
|
||||||
|
poolInfos[1].bufferNb=5;
|
||||||
|
poolInfos[1].bufferSize=250;
|
||||||
|
|
||||||
|
sprintf(testId,"test%d",(int)getuid());
|
||||||
|
printf("RequestedId: %s\n",testId);
|
||||||
|
printf("Void size: %d\n",sizeof(void));
|
||||||
|
//creation de l'espace de messages
|
||||||
|
mSPAC=msgSpaceCreate(testId,1,2,poolInfos);
|
||||||
|
|
||||||
|
pid_t pid=fork();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (pid ==0){
|
||||||
|
mSPAC=msgSpaceOpen(testId);
|
||||||
|
sleep(2);
|
||||||
|
printf("Get..."); fflush(stdout);
|
||||||
|
montext=msgGet(mSPAC,0,0);
|
||||||
|
printf("get-ok\n");
|
||||||
|
} else {
|
||||||
|
mSPAC=msgSpaceOpen(testId);
|
||||||
|
montext=msgAllocate(mSPAC,2,280,0);
|
||||||
|
*montext=42;
|
||||||
|
printf("### test Valeur0 %d ###\n",(int)*montext);
|
||||||
|
printf("Put..."); fflush(stdout);
|
||||||
|
msgPut(mSPAC,0,montext);
|
||||||
|
printf("put-ok\n");
|
||||||
|
//sleep(2);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue