From e32551b18f4560056d2d482f5e1505b1b98fa82a Mon Sep 17 00:00:00 2001 From: hunt Date: Tue, 29 Mar 2005 18:07:58 +0000 Subject: *** empty log message *** --- runtime/docs/html/stp__tasklet_8c-source.html | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'runtime/docs/html/stp__tasklet_8c-source.html') diff --git a/runtime/docs/html/stp__tasklet_8c-source.html b/runtime/docs/html/stp__tasklet_8c-source.html index 93f8b84c..1156b265 100644 --- a/runtime/docs/html/stp__tasklet_8c-source.html +++ b/runtime/docs/html/stp__tasklet_8c-source.html @@ -4,7 +4,7 @@ -
Main Page | Data Structures | Directories | File List | Data Fields | Globals | Related Pages
+
Main Page | Modules | Data Structures | Directories | File List | Data Fields | Globals | Related Pages

stp_tasklet.c

00001 /* Framework for putting a jprobe in a tasklet. */
@@ -15,7 +15,7 @@
 00006 #define HASH_TABLE_SIZE (1<<HASH_TABLE_BITS)
 00007 #define BUCKETS 16 /* largest histogram width */
 00008 
-00009 #include "runtime.h"
+00009 #include "runtime.h"
 00010 #include "io.c"
 00011 #include "probes.c"
 00012 
@@ -25,7 +25,7 @@
 00016 void inst__rcu_process_callbacks(struct rcu_ctrlblk *rcp,
 00017                                  struct rcu_state *rsp, struct rcu_data *rdp)
 00018 {
-00019   dlog ("interrupt=%d\n", in_interrupt());
+00019   dlog ("interrupt=%d\n", in_interrupt());
 00020   jprobe_return();
 00021 }
 00022 
@@ -41,20 +41,18 @@
 00032 static int init_stp(void)
 00033 {
 00034   int ret = _stp_register_jprobes (stp_probes, MAX_STP_PROBES);
-00035   dlog("instrumentation is enabled...\n");
+00035   dlog("instrumentation is enabled...\n");
 00036   return ret;
 00037 }
 00038 
 00039 static void cleanup_stp(void)
 00040 {
 00041   _stp_unregister_jprobes (stp_probes, MAX_STP_PROBES);
-00042   dlog ("EXIT\n");
+00042   dlog ("EXIT\n");
 00043 }
 00044 
 00045 module_init(init_stp);
 00046 module_exit(cleanup_stp);
 00047 MODULE_LICENSE("GPL");
 00048 
-

-Generated on Tue Mar 22 10:27:36 2005 for SystemTap. - + -- cgit