perf tools: Fix one of the probe events to exclude kernel
[deliverable/linux.git] / tools / perf / util / pstack.h
CommitLineData
3e1bbdc3
ACM
1#ifndef _PERF_PSTACK_
2#define _PERF_PSTACK_
3
d1b4f249
ACM
4#include <stdbool.h>
5
3e1bbdc3
ACM
6struct pstack;
7struct pstack *pstack__new(unsigned short max_nr_entries);
316c7136
ACM
8void pstack__delete(struct pstack *pstack);
9bool pstack__empty(const struct pstack *pstack);
10void pstack__remove(struct pstack *pstack, void *key);
11void pstack__push(struct pstack *pstack, void *key);
12void *pstack__pop(struct pstack *pstack);
3e1bbdc3
ACM
13
14#endif /* _PERF_PSTACK_ */
This page took 0.214072 seconds and 5 git commands to generate.