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

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

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