Home
last modified time | relevance | path

Searched refs:plink_freelist (Results 1 – 1 of 1) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dlemon.c2458 static struct plink *plink_freelist = 0; variable
2464 if( plink_freelist==0 ){ in Plink_new()
2467 plink_freelist = (struct plink *)malloc( sizeof(struct plink)*amt ); in Plink_new()
2468 if( plink_freelist==0 ){ in Plink_new()
2473 for(i=0; i<amt-1; i++) plink_freelist[i].next = &plink_freelist[i+1]; in Plink_new()
2474 plink_freelist[amt-1].next = 0; in Plink_new()
2476 new = plink_freelist; in Plink_new()
2477 plink_freelist = plink_freelist->next; in Plink_new()
2515 plp->next = plink_freelist;
2516 plink_freelist = plp;