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