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