]> Zhao Yanbai Git Server - minix.git/commitdiff
cprofile always on
authorBen Gras <ben@minix3.org>
Fri, 9 Jan 2009 21:42:36 +0000 (21:42 +0000)
committerBen Gras <ben@minix3.org>
Fri, 9 Jan 2009 21:42:36 +0000 (21:42 +0000)
lib/syslib/sys_cprof.c
lib/syslib/sys_profbuf.c
lib/sysutil/profile.c
lib/sysutil/profile_extern.c

index 2930305164e2a4e00ab6303eec6a5bc13525d384..4abfad8a323a8817d0cb3120aa9c06491ed80bca 100644 (file)
@@ -1,7 +1,5 @@
 #include "syslib.h"
 
-#if CPROFILE
-
 /*===========================================================================*
  *                                sys_cprof                                 *
  *===========================================================================*/
@@ -23,5 +21,3 @@ void *mem_ptr;                                /* location of allocated memory */
   return(_taskcall(SYSTASK, SYS_CPROF, &m));
 }
 
-#endif
-
index 9c9bf3688a766d1ad6a0e44ff0d2f14216676a97..a301aa7130144ca6a4ee0abfb428ee98fe1df5bb 100644 (file)
@@ -2,8 +2,6 @@
 
 #include <minix/config.h>
 
-#if CPROFILE
-
 /*===========================================================================*
  *                                sys_profbuf                               *
  *===========================================================================*/
@@ -19,5 +17,3 @@ void *mem_ptr;                                /* pointer to profiling table */
   return(_taskcall(SYSTASK, SYS_PROFBUF, &m));
 }
 
-#endif
-
index aaa2e55979bdf6e41f4953a71df567d8b9bd0c4b..9c6edb2cc5975f7e549bad2ffbe198564c442416 100644 (file)
@@ -12,8 +12,6 @@
 
 #include <lib.h>
 
-#if CPROFILE
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -284,5 +282,3 @@ PRIVATE void clear_tbl()
   }
 }
 
-#endif /* CPROFILE */
-
index 928a32828c39eabfecfa962740c044e73926dd76..73af23e4ea9c982d7e10ebd010130f19e2bc78ed 100644 (file)
@@ -13,8 +13,6 @@
 
 #include <lib.h>
 
-#if CPROFILE
-
 #include <minix/profile.h>
 #include <minix/syslib.h>
 
@@ -44,5 +42,3 @@ void *tbl_ptr;
   sys_profbuf(ctl_ptr, tbl_ptr);
 }
 
-#endif /* CPROFILE */
-