You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
380 B
12 lines
380 B
#ifndef _PERF_PSTACK_
|
|
#define _PERF_PSTACK_
|
|
|
|
struct pstack;
|
|
struct pstack *pstack__new(unsigned short max_nr_entries);
|
|
void pstack__delete(struct pstack *self);
|
|
bool pstack__empty(const struct pstack *self);
|
|
void pstack__remove(struct pstack *self, void *key);
|
|
void pstack__push(struct pstack *self, void *key);
|
|
void *pstack__pop(struct pstack *self);
|
|
|
|
#endif /* _PERF_PSTACK_ */
|
|
|