summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/capture-cli.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/capture-cli.h')
-rw-r--r--cpukit/include/rtems/capture-cli.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/cpukit/include/rtems/capture-cli.h b/cpukit/include/rtems/capture-cli.h
new file mode 100644
index 0000000000..55749b7cb1
--- /dev/null
+++ b/cpukit/include/rtems/capture-cli.h
@@ -0,0 +1,53 @@
+/**
+ * @file rtems/capture-cli.h
+ *
+ * This is the Target Interface Command Line Interface. You need
+ * start the RTEMS monitor.
+ */
+
+/*
+ ------------------------------------------------------------------------
+
+ Copyright 2002, 2016 Chris Johns <chrisj@rtems.org>.
+ All rights reserved.
+
+ COPYRIGHT (c) 1989-2014.
+ On-Line Applications Research Corporation (OAR).
+
+ The license and distribution terms for this file may be
+ found in the file LICENSE in this distribution.
+
+ This software with is provided ``as is'' and with NO WARRANTY.
+
+ ------------------------------------------------------------------------
+
+ RTEMS Performance Monitoring and Measurement Framework.
+
+ This is the Target Interface Command Line Interface. You need
+ start the RTEMS monitor.
+
+*/
+
+#ifndef __CAPTURE_CLI_H_
+#define __CAPTURE_CLI_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <rtems/capture.h>
+
+/**
+ * rtems_capture_cli_init
+ *
+ * This function initialises the command line interface to the capture
+ * engine.
+ */
+rtems_status_code
+rtems_capture_cli_init (rtems_capture_timestamp timestamp);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif