diff options
Diffstat (limited to 'tools/perf/util/pstack.h')
-rw-r--r-- | tools/perf/util/pstack.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/util/pstack.h b/tools/perf/util/pstack.h index 4cedea59f518..c3cb6584d527 100644 --- a/tools/perf/util/pstack.h +++ b/tools/perf/util/pstack.h | |||
@@ -5,10 +5,10 @@ | |||
5 | 5 | ||
6 | struct pstack; | 6 | struct pstack; |
7 | struct pstack *pstack__new(unsigned short max_nr_entries); | 7 | struct pstack *pstack__new(unsigned short max_nr_entries); |
8 | void pstack__delete(struct pstack *self); | 8 | void pstack__delete(struct pstack *pstack); |
9 | bool pstack__empty(const struct pstack *self); | 9 | bool pstack__empty(const struct pstack *pstack); |
10 | void pstack__remove(struct pstack *self, void *key); | 10 | void pstack__remove(struct pstack *pstack, void *key); |
11 | void pstack__push(struct pstack *self, void *key); | 11 | void pstack__push(struct pstack *pstack, void *key); |
12 | void *pstack__pop(struct pstack *self); | 12 | void *pstack__pop(struct pstack *pstack); |
13 | 13 | ||
14 | #endif /* _PERF_PSTACK_ */ | 14 | #endif /* _PERF_PSTACK_ */ |