Searched defs:Palloc (Results 1 – 3 of 3) sorted by relevance
27 typedef struct Palloc Palloc; typedef539 struct Palloc struct542 Pallocmem mem[4]; argument543 Page *head; /* most recently used */544 Page *tail; /* least recently used */545 ulong freecount; /* how many pages on free list now */546 Page *pages; /* array of all pages */547 ulong user; /* how many user pages */548 Page *hash[PGHSIZE];549 Lock hashlock;[all …]
28 typedef struct Palloc Palloc; typedef494 struct Palloc struct497 Pallocpg avail[32]; /* indexed by log2 of page size (Page.lgsize) */ argument498 ulong user; /* how many user pages */499 Page *hash[PGHSIZE];500 Lock hashlock;501 Rendez r; /* Sleep for free mem */502 QLock pwait; /* Queue of procs waiting for memory */
34 typedef struct Palloc Palloc; typedef