Skip to content

Instantly share code, notes, and snippets.

@nietaki
Created December 20, 2010 18:02
Show Gist options
  • Save nietaki/748723 to your computer and use it in GitHub Desktop.
Save nietaki/748723 to your computer and use it in GitHub Desktop.
int intRcv(int qid, int type){
ssize_t insize;
struct intmsgbuf out;
insize = msgrcv(qid, &out, sizeof(int), type, RCV_MSG_FLAG);
if(insize == -1){
syserr("intrcv");
}
return out.mtext[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment