diff options
Diffstat (limited to 'kernel/gcov/gcov.h')
| -rw-r--r-- | kernel/gcov/gcov.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/gcov/gcov.h b/kernel/gcov/gcov.h index de118ad4a024..6ab2c1808c9d 100644 --- a/kernel/gcov/gcov.h +++ b/kernel/gcov/gcov.h @@ -15,6 +15,7 @@  #ifndef GCOV_H  #define GCOV_H GCOV_H +#include <linux/module.h>  #include <linux/types.h>  /* @@ -46,6 +47,7 @@ unsigned int gcov_info_version(struct gcov_info *info);  struct gcov_info *gcov_info_next(struct gcov_info *info);  void gcov_info_link(struct gcov_info *info);  void gcov_info_unlink(struct gcov_info *prev, struct gcov_info *info); +bool gcov_info_within_module(struct gcov_info *info, struct module *mod);  /* Base interface. */  enum gcov_action { @@ -83,4 +85,7 @@ struct gcov_link {  };  extern const struct gcov_link gcov_link[]; +extern int gcov_events_enabled; +extern struct mutex gcov_lock; +  #endif /* GCOV_H */  |