source: rtems/cpukit/libmisc/capture/capture-cli.h @ a85d8ec

4.104.114.84.95
Last change on this file since a85d8ec was a923a82, checked in by Joel Sherrill <joel.sherrill@…>, on 05/15/02 at 16:36:10

2002-05-16 Chris Johns <ccj@…>

  • 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.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2  ------------------------------------------------------------------------
3  $Id$
4  ------------------------------------------------------------------------
5 
6  Copyright Objective Design Systems Pty Ltd, 2002
7  All rights reserved Objective Design Systems Pty Ltd, 2002
8  Chris Johns (ccj@acm.org)
9
10  COPYRIGHT (c) 1989-1998.
11  On-Line Applications Research Corporation (OAR).
12
13  The license and distribution terms for this file may be
14  found in the file LICENSE in this distribution.
15
16  This software with is provided ``as is'' and with NO WARRANTY.
17 
18  ------------------------------------------------------------------------
19
20  RTEMS Performance Monitoring and Measurement Framework.
21
22  This is the Target Interface Command Line Interface. You need
23  start the RTEMS monitor.
24
25*/
26
27#ifndef __CAPTURE_CLI_H_
28#define __CAPTURE_CLI_H_
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34#include <rtems/capture.h>
35
36/*
37 * rtems_capture_cli_init
38 *
39 *  DESCRIPTION:
40 *
41 * This function initialises the command line interface to the capture
42 * engine.
43 *
44 */
45rtems_status_code
46rtems_capture_cli_init (rtems_capture_timestamp timestamp);
47
48#ifdef __cplusplus
49}
50#endif
51
52#endif
Note: See TracBrowser for help on using the repository browser.