gmon_syms.c 499 字节
Newer Older
J
Jeff Dike 已提交
1 2
/*
 * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
L
Linus Torvalds 已提交
3 4 5
 * Licensed under the GPL
 */

6
#include <linux/module.h>
L
Linus Torvalds 已提交
7

J
Jeff Dike 已提交
8
extern void __bb_init_func(void *)  __attribute__((weak));
L
Linus Torvalds 已提交
9
EXPORT_SYMBOL(__bb_init_func);
T
Thomas Meyer 已提交
10 11 12 13 14 15 16

extern void __gcov_init(void *)  __attribute__((weak));
EXPORT_SYMBOL(__gcov_init);
extern void __gcov_merge_add(void *, unsigned int)  __attribute__((weak));
EXPORT_SYMBOL(__gcov_merge_add);
extern void __gcov_exit(void)  __attribute__((weak));
EXPORT_SYMBOL(__gcov_exit);