Fix comments spacing
authorDavid Goulet <david.goulet@polymtl.ca>
Thu, 30 Jun 2011 16:34:57 +0000 (12:34 -0400)
committerDavid Goulet <david.goulet@polymtl.ca>
Thu, 30 Jun 2011 16:34:57 +0000 (12:34 -0400)
Signed-off-by: David Goulet <david.goulet@polymtl.ca>
include/lttng-share.h
include/lttng/lttng.h

index f75ad773df8339da069a009f54adeea837497ce5..825456c563cc11077e2c9b88ecc95010f8a9b564 100644 (file)
@@ -30,17 +30,17 @@ typedef __s64 s64;
 #define LTTNG_RUNDIR        "/var/run/lttng"
 
 /* Default channel attributes */
-#define DEFAULT_CHANNEL_NAME                   "channel0"
-#define DEFAULT_CHANNEL_OVERWRITE              0
+#define DEFAULT_CHANNEL_NAME                "channel0"
+#define DEFAULT_CHANNEL_OVERWRITE           0       /* usec */
 /* DEFAULT_CHANNEL_SUBBUF_SIZE must always be a power of 2 */
-#define DEFAULT_CHANNEL_SUBBUF_SIZE            4096    /* bytes */
+#define DEFAULT_CHANNEL_SUBBUF_SIZE         4096    /* bytes */
 /* DEFAULT_CHANNEL_SUBBUF_NUM must always be a power of 2 */
-#define DEFAULT_CHANNEL_SUBBUF_NUM             8
-#define DEFAULT_CHANNEL_SWITCH_TIMER           0       /* usec */
-#define DEFAULT_CHANNEL_READ_TIMER             200     /* usec */
+#define DEFAULT_CHANNEL_SUBBUF_NUM          8
+#define DEFAULT_CHANNEL_SWITCH_TIMER        0       /* usec */
+#define DEFAULT_CHANNEL_READ_TIMER          200     /* usec */
 /* See lttng.h enum lttng_kernel_output for channel output */
-#define DEFAULT_KERNEL_CHANNEL_OUTPUT          LTTNG_KERNEL_SPLICE
-#define DEFAULT_UST_CHANNEL_OUTPUT             LTTNG_UST_MMAP
+#define DEFAULT_KERNEL_CHANNEL_OUTPUT       LTTNG_KERNEL_SPLICE
+#define DEFAULT_UST_CHANNEL_OUTPUT          LTTNG_UST_MMAP
 
 /*
  * lttng user-space instrumentation type
index 5f60300616a57788ccf3a99112a616ec02142cac..83838dcb7d0a5fc884dd87276b8e786fd69cccb4 100644 (file)
@@ -113,12 +113,12 @@ struct lttng_event {
 
 /* Tracer channel attributes */
 struct lttng_channel_attr {
-       int overwrite;                          /* 1: overwrite, 0: discard */
-       uint64_t subbuf_size;                   /* bytes */
-       uint64_t num_subbuf;                    /* power of 2 */
-       unsigned int switch_timer_interval;     /* usec */
-       unsigned int read_timer_interval;       /* usec */
-       enum lttng_kernel_output output;        /* splice, mmap */
+       int overwrite;                      /* 1: overwrite, 0: discard */
+       uint64_t subbuf_size;               /* bytes */
+       uint64_t num_subbuf;                /* power of 2 */
+       unsigned int switch_timer_interval; /* usec */
+       unsigned int read_timer_interval;   /* usec */
+       enum lttng_kernel_output output;    /* splice, mmap */
 };
 
 /*
This page took 0.026563 seconds and 4 git commands to generate.