d1b4f2491c
LKML-Reference: <new-submission> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
14 lines
402 B
C
14 lines
402 B
C
#ifndef _PERF_PSTACK_
|
|
#define _PERF_PSTACK_
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct pstack;
|
|
struct pstack *pstack__new(unsigned short max_nr_entries);
|
|
void pstack__delete(struct pstack *self);
|
|
bool pstack__empty(const struct pstack *self);
|
|
void pstack__remove(struct pstack *self, void *key);
|
|
void pstack__push(struct pstack *self, void *key);
|
|
void *pstack__pop(struct pstack *self);
|
|
|
|
#endif /* _PERF_PSTACK_ */
|