remove unneeded noinline's
authorPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Tue, 13 Oct 2009 21:17:01 +0000 (17:17 -0400)
committerPierre-Marc Fournier <pierre-marc.fournier@polymtl.ca>
Tue, 13 Oct 2009 21:17:01 +0000 (17:17 -0400)
libust/tracectl.c

index 23f02466d8a4aa3014ebb57726675edce2f14e09..9a651d85d38cc915ee9b2327c0c1cd092f9439d3 100644 (file)
@@ -1128,10 +1128,12 @@ static void __attribute__((destructor)) keepalive()
        ustcomm_fini_app(&ustcomm_app);
 }
 
-noinline void ust_potential_exec(void)
+void ust_potential_exec(void)
 {
        trace_mark(ust, potential_exec, MARK_NOARGS);
 
+       DBG("test");
+
        keepalive();
 }
 
@@ -1141,7 +1143,7 @@ noinline void ust_potential_exec(void)
  * of the new process will not be collected.
  */
 
-noinline void ust_fork(void)
+void ust_fork(void)
 {
        struct blocked_consumer *bc;
        struct blocked_consumer *deletable_bc = NULL;
This page took 0.023606 seconds and 4 git commands to generate.