ソースファイル ac と bc の間でこれらのようなキューを渡しています
ファイル:ac
sq[a]=new_queue();
pthread_create(&st[a],NULL,sendPacket,sq[a]);
ファイル:bc
void *sendPacket(void *queue){
/* here i need to know which queue has come ,determine
the index of queue how can I do it? */
}