Home | History | Annotate | Download | only in util

Lines Matching refs:pstack

8 #include "pstack.h"
18 struct pstack {
24 struct pstack *pstack__new(unsigned short max_nr_entries)
26 struct pstack *self = zalloc((sizeof(*self) +
33 void pstack__delete(struct pstack *self)
38 bool pstack__empty(const struct pstack *self)
43 void pstack__remove(struct pstack *self, void *key)
57 pr_err("%s: %p not on the pstack!\n", __func__, key);
60 void pstack__push(struct pstack *self, void *key)
69 void *pstack__pop(struct pstack *self)