From a010d844338a34772e08e5c41e1d28158982d522 Mon Sep 17 00:00:00 2001 From: compudj Date: Wed, 13 Feb 2008 20:12:27 +0000 Subject: [PATCH] update git-svn-id: http://ltt.polymtl.ca/svn@2816 04897980-b3bd-0310-b5e0-8ef037075253 --- markers-userspace/marker-lib.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/markers-userspace/marker-lib.c b/markers-userspace/marker-lib.c index 2c42d4c8..c13c9eec 100644 --- a/markers-userspace/marker-lib.c +++ b/markers-userspace/marker-lib.c @@ -3,8 +3,11 @@ #include #include -__attribute__ ((visibility ("protected"))) extern struct marker __start___markers[]; -__attribute__ ((visibility ("protected"))) extern struct marker __stop___markers[]; +__attribute__ ((visibility ("protected"))) +extern struct marker __start___markers[]; + +__attribute__ ((visibility ("protected"))) +extern struct marker __stop___markers[]; /** * __mark_empty_function - Empty probe callback @@ -49,7 +52,8 @@ void testip(void) printf("addr : %p\n", __builtin_return_address(0)); } -__attribute__((constructor, visibility ("protected"))) void marker_init(void) +__attribute__((constructor, visibility ("protected"))) +void marker_init(void) { struct marker *iter; int ret; @@ -66,7 +70,8 @@ __attribute__((constructor, visibility ("protected"))) void marker_init(void) } } -static __attribute__((destructor, visibility ("protected"))) void marker_fini(void) +__attribute__((destructor, visibility ("protected"))) +void marker_fini(void) { struct marker *iter; int ret; -- 2.34.1