GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / tools / perf / util / pstack.h
blob4cedea59f518ce7c1fcb61b0368598453bdf3a63
1 #ifndef _PERF_PSTACK_
2 #define _PERF_PSTACK_
4 #include <stdbool.h>
6 struct pstack;
7 struct pstack *pstack__new(unsigned short max_nr_entries);
8 void pstack__delete(struct pstack *self);
9 bool pstack__empty(const struct pstack *self);
10 void pstack__remove(struct pstack *self, void *key);
11 void pstack__push(struct pstack *self, void *key);
12 void *pstack__pop(struct pstack *self);
14 #endif /* _PERF_PSTACK_ */