*** empty log message ***
This commit is contained in:
parent
0e88e967c7
commit
b3a4623a26
2 changed files with 18 additions and 2 deletions
|
@ -39,9 +39,24 @@ int msgSpaceDelete(msgSpaceId externId){
|
||||||
printf("ok\n");
|
printf("ok\n");
|
||||||
|
|
||||||
if (shm_unlink(nzgId)<0){
|
if (shm_unlink(nzgId)<0){
|
||||||
perror("shm_unlink");
|
NZG_ERROR("shm_unlink",nzgId);
|
||||||
return -1;
|
goto ERROR;
|
||||||
};
|
};
|
||||||
|
if (msgSpaceListLock()<0){
|
||||||
|
NZG_ERROR("msgSpaceListLock","");
|
||||||
|
goto ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (msgSpaceListRem(nzgId) < 0){
|
||||||
|
NZG_ERROR("msgSpaceListRem",nzgId);
|
||||||
|
goto ERROR;
|
||||||
|
}
|
||||||
|
if (msgSpaceListUnlock()< 0){
|
||||||
|
NZG_ERROR("msgSpaceListUnlock","");
|
||||||
|
goto ERROR;
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
ERROR:
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -40,5 +40,6 @@ int main(void) {
|
||||||
montext=msgGet(mSPAC,0,0);
|
montext=msgGet(mSPAC,0,0);
|
||||||
printf("get-ok\n");
|
printf("get-ok\n");
|
||||||
printf("### test Reception %d ###\n",(int)*montext);
|
printf("### test Reception %d ###\n",(int)*montext);
|
||||||
|
msgSpaceDelete(testId);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue