Home | History | Annotate | Download | only in lib

Lines Matching refs:child

30 int doreader(long key, int tid, long type, int child, int nreps)
38 printf("msgget() error in the reader of child group %d: %s\n",
39 child, strerror(errno));
44 printf("Message queue mismatch in the reader of child group %d for message queue id %d\n",
45 child, id);
54 printf("msgrcv() error in child %d, read # = %d: %s\n",
55 child, (i + 1), strerror(errno));
60 printf("Type mismatch in child %d, read #d = %d: ",
61 child, (i + 1));
68 printf("Size mismatch in child %d, read # = %d: ",
69 child, (i + 1));
75 if (verify(buffer.data.pbytes, (key % 255), size - 1, child)) {
76 printf("Verify failed in child %d read # = %d, key = %lx\n",
77 child, (i + 1), key);
86 int dowriter(long key, int tid, long type, int child, int nreps)
94 printf("msgget() error in the writer of child group %d: %s\n",
95 child, strerror(errno));
100 printf("Message queue mismatch in the reader of child group %d for message queue id %d\n",
101 child, id);
116 printf("msgsnd() error in child %d, write # = %d, key = %lx: %s\n",
117 child, nreps, key, strerror(errno));
136 int verify(char *buf, char val, int size, int child)
140 printf("Verify error in child %d, *buf = %x, val = %x, size = %d\n",
141 child, *buf, val, size);