mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
25903407da
So that we can filter by dso. Symbols in other dsos won't be accounted for. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Mike Galbraith <efault@gmx.de> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Paul Mackerras <paulus@samba.org> LKML-Reference: <1246399282-20934-2-git-send-email-acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
33 lines
763 B
C
33 lines
763 B
C
#ifndef STRLIST_H_
|
|
#define STRLIST_H_
|
|
|
|
#include "rbtree.h"
|
|
#include <stdbool.h>
|
|
|
|
struct str_node {
|
|
struct rb_node rb_node;
|
|
const char *s;
|
|
};
|
|
|
|
struct strlist {
|
|
struct rb_root entries;
|
|
bool dupstr;
|
|
};
|
|
|
|
struct strlist *strlist__new(bool dupstr, const char *slist);
|
|
void strlist__delete(struct strlist *self);
|
|
|
|
void strlist__remove(struct strlist *self, struct str_node *sn);
|
|
int strlist__load(struct strlist *self, const char *filename);
|
|
int strlist__add(struct strlist *self, const char *str);
|
|
|
|
bool strlist__has_entry(struct strlist *self, const char *entry);
|
|
|
|
static inline bool strlist__empty(const struct strlist *self)
|
|
{
|
|
return rb_first(&self->entries) == NULL;
|
|
}
|
|
|
|
int strlist__parse_list(struct strlist *self, const char *s);
|
|
#endif /* STRLIST_H_ */
|