gmon_syms.c 499 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
  3. * Licensed under the GPL
  4. */
  5. #include <linux/module.h>
  6. extern void __bb_init_func(void *) __attribute__((weak));
  7. EXPORT_SYMBOL(__bb_init_func);
  8. extern void __gcov_init(void *) __attribute__((weak));
  9. EXPORT_SYMBOL(__gcov_init);
  10. extern void __gcov_merge_add(void *, unsigned int) __attribute__((weak));
  11. EXPORT_SYMBOL(__gcov_merge_add);
  12. extern void __gcov_exit(void) __attribute__((weak));
  13. EXPORT_SYMBOL(__gcov_exit);