Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:13

0001 /**
0002  * @file
0003  *
0004  * This is the Target Interface Command Line Interface. You need
0005  * start the RTEMS monitor.
0006  */
0007 
0008 /*
0009   ------------------------------------------------------------------------
0010 
0011   Copyright 2002, 2016 Chris Johns <chrisj@rtems.org>.
0012  All rights reserved.
0013 
0014   COPYRIGHT (c) 1989-2014.
0015   On-Line Applications Research Corporation (OAR).
0016 
0017   The license and distribution terms for this file may be
0018   found in the file LICENSE in this distribution.
0019 
0020   This software with is provided ``as is'' and with NO WARRANTY.
0021 
0022   ------------------------------------------------------------------------
0023 
0024   RTEMS Performance Monitoring and Measurement Framework.
0025 
0026   This is the Target Interface Command Line Interface. You need
0027   start the RTEMS monitor.
0028 
0029 */
0030 
0031 #ifndef __CAPTURE_CLI_H_
0032 #define __CAPTURE_CLI_H_
0033 
0034 #ifdef __cplusplus
0035 extern "C" {
0036 #endif
0037 
0038 #include <rtems/capture.h>
0039 
0040 /**
0041  * rtems_capture_cli_init
0042  *
0043  * This function initialises the command line interface to the capture
0044  * engine.
0045  */
0046 rtems_status_code
0047 rtems_capture_cli_init (rtems_capture_timestamp timestamp);
0048 
0049 #ifdef __cplusplus
0050 }
0051 #endif
0052 
0053 #endif