source: rtems/cpukit/libdl/rtl-shell.h @ 3feb372

4.115
Last change on this file since 3feb372 was ae5fe7e6, checked in by Chris Johns <chrisj@…>, on 10/27/14 at 01:09:41

cpukit: Add libdl with the Runtime Loader (RTL) code.

This is a merge of the RTL project.

  • Property mode set to 100644
File size: 768 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2012 Chris Johns <chrisj@rtems.org>
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.com/license/LICENSE.
7 */
8/**
9 * @file
10 *
11 * @ingroup rtems_rtl
12 *
13 * @brief RTEMS Run-Time Linker ELF Shell Support.
14 */
15
16#if !defined (_RTEMS_RTL_SHELL_H_)
17#define _RTEMS_RTL_SHELL_H_
18
19#ifdef __cplusplus
20extern "C" {
21#endif /* __cplusplus */
22
23#include <stdint.h>
24
25/**
26 * The RTL single shell command contains sub-commands.
27 *
28 * @param argc The argument count.
29 * @param argv Array of argument strings.
30 * @retval 0 No error.
31 * @return int The exit code.
32 */
33int rtems_rtl_shell_command (int argc, char* argv[]);
34
35#ifdef __cplusplus
36}
37#endif /* __cplusplus */
38
39#endif
Note: See TracBrowser for help on using the repository browser.