summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/capture/capture-cli.h
blob: 55749b7cb12885b69ad4990658cbf70ad0c59d40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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