RTEMS 6.1-rc4
Loading...
Searching...
No Matches
devnull.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-2-Clause */
2
12/*
13 * Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
14 *
15 * COPYRIGHT (c) 1989-2000.
16 * On-Line Applications Research Corporation (OAR).
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions
20 * are met:
21 * 1. Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
31 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#ifndef _RTEMS_DEVNULL_H
41#define _RTEMS_DEVNULL_H
42
43#include <rtems/io.h>
44
52#ifdef __cplusplus
53extern "C" {
54#endif
55
56#define DEVNULL_DRIVER_TABLE_ENTRY \
57 { null_initialize, null_open, null_close, null_read, \
58 null_write, null_control }
59
60#define NULL_SUCCESSFUL RTEMS_SUCCESSFUL
61
62rtems_device_driver null_initialize(
65 void *
66);
67
68rtems_device_driver null_open(
71 void *
72);
73
74rtems_device_driver null_close(
77 void *
78);
79
80rtems_device_driver null_read(
83 void *
84);
85
86rtems_device_driver null_write(
89 void *
90);
91
92rtems_device_driver null_control(
95 void *
96);
97
98#ifdef __cplusplus
99}
100#endif
102#endif
103/* end of include file */
This header file defines the IO Manager API.
uint32_t rtems_device_major_number
This integer type represents the major number of devices.
Definition: io.h:103
uint32_t rtems_device_minor_number
This integer type represents the minor number of devices.
Definition: io.h:115
rtems_status_code
This enumeration provides status codes for directives of the Classic API.
Definition: status.h:85