2010-05-14 23:05:21 +00:00
|
|
|
#ifndef _PERF_PSTACK_
|
|
|
|
#define _PERF_PSTACK_
|
|
|
|
|
2010-08-10 18:49:07 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2010-05-14 23:05:21 +00:00
|
|
|
struct pstack;
|
|
|
|
struct pstack *pstack__new(unsigned short max_nr_entries);
|
2013-11-05 18:32:36 +00: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);
|
2015-04-24 01:15:32 +00:00
|
|
|
void *pstack__peek(struct pstack *pstack);
|
2010-05-14 23:05:21 +00:00
|
|
|
|
|
|
|
#endif /* _PERF_PSTACK_ */
|