summaryrefslogtreecommitdiff
path: root/firmware/export/profile.h
diff options
context:
space:
mode:
authorMichael Giacomelli <giac2000@hotmail.com>2008-07-28 22:43:41 +0000
committerMichael Giacomelli <giac2000@hotmail.com>2008-07-28 22:43:41 +0000
commit52bdcbae856b07d3a793615b98dff338d26302ec (patch)
tree9ee975d98287ca851664cbc626e7d006c0a4264b /firmware/export/profile.h
parentc323d533c29fcf420df6b63ccf5c37340c7ba6c5 (diff)
downloadrockbox-52bdcbae856b07d3a793615b98dff338d26302ec.tar.gz
rockbox-52bdcbae856b07d3a793615b98dff338d26302ec.zip
Commit FS#9170 by Dave Hooper. Adds support for profiling on ARM, and fixes various issues with compiling profile builds. Also, note that profile_reader.pl syntax has changed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18142 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/profile.h')
-rw-r--r--firmware/export/profile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/profile.h b/firmware/export/profile.h
index d173f4b6e0..18a6f8679f 100644
--- a/firmware/export/profile.h
+++ b/firmware/export/profile.h
@@ -39,9 +39,9 @@ void profile_thread_stopped(int current_thread)
39void profile_thread_started(int current_thread) 39void profile_thread_started(int current_thread)
40 NO_PROF_ATTR; 40 NO_PROF_ATTR;
41 41
42void profile_func_exit(void *this_fn, void *call_site) 42void __cyg_profile_func_exit(void *this_fn, void *call_site)
43 NO_PROF_ATTR ICODE_ATTR; 43 NO_PROF_ATTR ICODE_ATTR;
44void profile_func_enter(void *this_fn, void *call_site) 44void __cyg_profile_func_enter(void *this_fn, void *call_site)
45 NO_PROF_ATTR ICODE_ATTR; 45 NO_PROF_ATTR ICODE_ATTR;
46 46
47#endif /*_SYS_PROFILE_H*/ 47#endif /*_SYS_PROFILE_H*/