Skip to content

Instantly share code, notes, and snippets.

@nietaki
Created December 20, 2010 18:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nietaki/748752 to your computer and use it in GitHub Desktop.
Save nietaki/748752 to your computer and use it in GitHub Desktop.
void *watek(void *intype_ptr){
printf("samo wnetrze watku \n");
int intype = *((int*)intype_ptr);
free((int*)intype_ptr);
printf("%i - intype\n", intype);
int k = intRcv(inqid, intype);
printf("rozmiar wiadomosci do odebrania - %i \n", k);
int i, tmp;
/*for(i=0;i<k;i++){
tmp = intRcv(inqid, intype);
printf("odebralem Z_%i: %i", i, tmp);
}*/
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment