summaryrefslogtreecommitdiffstats
path: root/c/src/libmisc/capture/capture-cli.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-05-15 16:36:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-05-15 16:36:10 +0000
commita923a82d2d63b29165b249bae6ad46bb045290b2 (patch)
treeac6f3f8aedb59311d3bb95cdca06a8ea93756f98 /c/src/libmisc/capture/capture-cli.h
parent2002-05-15 Chris Johns <ccj@acm.org> (diff)
downloadrtems-a923a82d2d63b29165b249bae6ad46bb045290b2.tar.bz2
2002-05-16 Chris Johns <ccj@acm.org>
* Per PR194, added the Capture engine. * capture/Makefile.am, capture/README, capture/capture-cli.c, capture/capture-cli.h, capture/capture.c, capture/capture.h, capture/.cvsignore: New files. * Makefile.am, configure.ac, wrapup/Makefile.am: Modified to reflect addition.
Diffstat (limited to 'c/src/libmisc/capture/capture-cli.h')
-rw-r--r--c/src/libmisc/capture/capture-cli.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/c/src/libmisc/capture/capture-cli.h b/c/src/libmisc/capture/capture-cli.h
new file mode 100644
index 0000000000..968e3217f9
--- /dev/null
+++ b/c/src/libmisc/capture/capture-cli.h
@@ -0,0 +1,52 @@
+/*
+ ------------------------------------------------------------------------
+ $Id$
+ ------------------------------------------------------------------------
+
+ Copyright Objective Design Systems Pty Ltd, 2002
+ All rights reserved Objective Design Systems Pty Ltd, 2002
+ Chris Johns (ccj@acm.org)
+
+ COPYRIGHT (c) 1989-1998.
+ 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
+ *
+ * DESCRIPTION:
+ *
+ * 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