Back to home page

OSCL-LXR

 
 

    


0001 #ifndef _PERF_PARSE_SUBLEVEL_OPTIONS_H
0002 #define _PERF_PARSE_SUBLEVEL_OPTIONS_H
0003 
0004 struct sublevel_option {
0005     const char *name;
0006     int *value_ptr;
0007 };
0008 
0009 int perf_parse_sublevel_options(const char *str, struct sublevel_option *opts);
0010 
0011 #endif