Lines Matching defs:cpp
274 struct child **cpp;
276 for (cpp = &child; *cpp != NULL && (*cpp)->pid != pid;
277 cpp = &(*cpp)->link)
279 if (*cpp == NULL) {
283 *cpp = child_freelist;
284 child_freelist = (*cpp)->link;
286 *cpp = emalloc(sizeof(**cpp));
288 (*cpp)->pid = pid;
289 (*cpp)->done = (*cpp)->free = 0;
290 (*cpp)->link = NULL;
292 return *cpp;
298 struct child **cpp;
300 for (cpp = &child; *cpp != cp; cpp = &(*cpp)->link)
302 *cpp = cp->link;