liblttctl spaces to tabs
[ltt-control.git] / ltt-control / liblttctl / lttctl.h
index cc028a574520a51c93da83c2040ddf29112c1cba..b3766d759d88b5d251d2043baaf60e1d90a26597 100644 (file)
@@ -1,7 +1,7 @@
 /* libltt header file
  *
  * Copyright 2005-
- *     Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
+ *              Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
  *
  *
  * This program is free software; you can redistribute it and/or modify
@@ -11,7 +11,7 @@
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.        See the
  * GNU General Public License for more details.
  *
  *
@@ -47,23 +47,24 @@ enum trace_mode {
 
 typedef struct lttctl_peer_msg {
        char trace_name[NAME_MAX];
+       char trace_type[NAME_MAX];
        enum trace_op op;
        union {
-    struct {
-      enum trace_mode mode;
-      unsigned subbuf_size;
-      unsigned n_subbufs;
-    } new_trace;
+               struct {
+                       enum trace_mode mode;
+                       unsigned subbuf_size;
+                       unsigned n_subbufs;
+               } new_trace;
        } args;
 } lttctl_peer_msg_t;
 
 
 struct lttctl_handle
 {
-  int fd;
-  //u_int8_t blocking;
-  struct sockaddr_nl local;
-  struct sockaddr_nl peer;
+       int fd;
+       //u_int8_t blocking;
+       struct sockaddr_nl local;
+       struct sockaddr_nl peer;
 };
 
 typedef struct lttctl_resp_msg {
@@ -76,7 +77,7 @@ int lttctl_destroy_handle(struct lttctl_handle *h);
 
 
 int lttctl_create_trace(const struct lttctl_handle *h,
-               char *name, enum trace_mode mode, unsigned subbuf_size, unsigned n_subbufs);
+               char *name, enum trace_mode mode, char *trace_type, unsigned subbuf_size, unsigned n_subbufs);
 
 int lttctl_destroy_trace(const struct lttctl_handle *handle, char *name);
 
This page took 0.0241 seconds and 4 git commands to generate.