RTEMS 6.1-rc5
Loading...
Searching...
No Matches
rap.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-2-Clause */
2
3/*
4 * COPYRIGHT (c) 2013, 2018 Chris Johns <chrisj@rtems.org>
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 */
37#if !defined (_RAP_H_)
38#define _RAP_H_
39
40#include <rtems.h>
41#include <rtems/chain.h>
42
43#ifdef __cplusplus
44extern "C" {
45#endif /* __cplusplus */
46
66typedef bool (*rtems_rap_iterator) (void* handle);
67
74bool rtems_rap_load (const char* name, int mode, int argc, const char* argv[]);
75
83bool rtems_rap_unload (const char* name);
84
93void* rtems_rap_find (const char* name);
94
103
111const char* rtems_rap_name (void* handle);
112
119void* rtems_rap_dl_handle (void* handle);
120
130int rtems_rap_get_error (char* message, size_t max_message);
131
132#ifdef __cplusplus
133}
134#endif /* __cplusplus */
135
136#endif
This header file provides the Chains API.
const char * rtems_rap_name(void *handle)
Definition: rap.c:420
bool rtems_rap_load(const char *name, int mode, int argc, const char *argv[])
Definition: rap.c:244
bool rtems_rap_unload(const char *name)
Definition: rap.c:330
void * rtems_rap_find(const char *name)
Definition: rap.c:373
int rtems_rap_get_error(char *message, size_t max_message)
Definition: rap.c:438
void * rtems_rap_dl_handle(void *handle)
Definition: rap.c:429
bool(* rtems_rap_iterator)(void *handle)
Definition: rap.h:66
bool rtems_rap_iterate(rtems_rap_iterator iterator)
Definition: rap.c:397
This header file defines the RTEMS Classic API.
Definition: media-server.c:46