RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / arch / um / kernel / gmon_syms.c
blob13aa115cd1b4b521d3bdc1259454626f6b3a4a33
1 /*
2 * Copyright (C) 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
6 #include "linux/module.h"
8 extern void __bb_init_func(void *) __attribute__((weak));
9 EXPORT_SYMBOL(__bb_init_func);
11 /* This is defined (and referred to in profiling stub code) only by some GCC
12 * versions in libgcov.
14 * Since SuSE backported the fix, we cannot handle it depending on GCC version.
15 * So, unconditinally export it. But also give it a weak declaration, which will
16 * be overriden by any other one.
19 extern void __gcov_init(void *) __attribute__((weak));
20 EXPORT_SYMBOL(__gcov_init);
22 extern void __gcov_merge_add(void *) __attribute__((weak));
23 EXPORT_SYMBOL(__gcov_merge_add);