2010-05-15 03:05:21 +04:00
|
|
|
#ifndef _PERF_PSTACK_
|
|
|
|
#define _PERF_PSTACK_
|
|
|
|
|
2010-08-10 22:49:07 +04:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2010-05-15 03:05:21 +04:00
|
|
|
struct pstack;
|
|
|
|
struct pstack *pstack__new(unsigned short max_nr_entries);
|
2013-11-05 22:32:36 +04:00
|
|
|
void pstack__delete(struct pstack *pstack);
|
|
|
|
bool pstack__empty(const struct pstack *pstack);
|
|
|
|
void pstack__remove(struct pstack *pstack, void *key);
|
|
|
|
void pstack__push(struct pstack *pstack, void *key);
|
|
|
|
void *pstack__pop(struct pstack *pstack);
|
2010-05-15 03:05:21 +04:00
|
|
|
|
|
|
|
#endif /* _PERF_PSTACK_ */
|