source: rtems/cpukit/include/rtems/capture-cli.h

Last change on this file was feea03b6, checked in by Sebastian Huber <sebastian.huber@…>, on 02/27/19 at 09:53:30

Remove explicit file names from @file

This makes the @file documentation independent of the actual file name.

Update #3707.

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