Add a save command based on the save API to the lttng client
[lttng-tools.git] / src / bin / lttng / command.h
index d7670f26df1c296b34e14e71748ad77a012c4646..fc3c394c1aa05d41d16300928cc67cf63b872e2b 100644 (file)
@@ -1,37 +1,37 @@
 /*
  * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
  *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; only version 2
- * of the License.
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 2 only,
+ * as published by the Free Software Foundation.
  *
  * 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
  * GNU General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #ifndef _LTTNG_CMD_H
 #define _LTTNG_CMD_H
 
 #include <lttng/lttng.h>
-#include <common/lttngerr.h>
-#include <common/lttng-share.h>
+#include <common/common.h>
+#include <common/defaults.h>
 
 #include "conf.h"
 #include "utils.h"
 
 enum cmd_error_code {
-       CMD_SUCCESS,
+       CMD_SUCCESS = 0,
        CMD_ERROR,
        CMD_UNDEFINED,
-       CMD_NOT_IMPLEMENTED,
        CMD_FATAL,
+       CMD_WARNING,
+       CMD_UNSUPPORTED,
 };
 
 struct cmd_struct {
@@ -52,5 +52,10 @@ extern int cmd_add_context(int argc, const char **argv);
 extern int cmd_set_session(int argc, const char **argv);
 extern int cmd_version(int argc, const char **argv);
 extern int cmd_calibrate(int argc, const char **argv);
+extern int cmd_view(int argc, const char **argv);
+extern int cmd_enable_consumer(int argc, const char **argv);
+extern int cmd_disable_consumer(int argc, const char **argv);
+extern int cmd_snapshot(int argc, const char **argv);
+extern int cmd_save(int argc, const char **argv);
 
 #endif /* _LTTNG_CMD_H */
This page took 0.023651 seconds and 4 git commands to generate.