summaryrefslogtreecommitdiffstats
path: root/apps/common/cygprof.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/common/cygprof.c')
-rw-r--r--apps/common/cygprof.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/common/cygprof.c b/apps/common/cygprof.c
index b10bff2..a4182e6 100644
--- a/apps/common/cygprof.c
+++ b/apps/common/cygprof.c
@@ -10,17 +10,17 @@
int cyg_prof_on;
void
-__cyg_profile_func_enter (void *this_fn, void *call_site)
+__cyg_profile_func_enter(void *this_fn, void *call_site)
{
- if (cyg_prof_on) {
+ if(cyg_prof_on) {
mon_memtrace("IN: %x %x\n", this_fn, call_site);
}
}
void
-__cyg_profile_func_exit (void *this_fn, void *call_site)
+__cyg_profile_func_exit(void *this_fn, void *call_site)
{
- if (cyg_prof_on) {
- mon_memtrace("OUT: %x %x\n", this_fn, call_site);
+ if(cyg_prof_on) {
+ mon_memtrace("OUT: %x %x\n", this_fn, call_site);
}
}