memdev.h (9d7a57e9167eabcea2afbbea6d7b757f2f030680) memdev.h (c0763d3763440334608368b40e63bb1074a0bde5)
1/*-
2 * Copyright (c) 2004 Mark R V Murray
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD$
27 */
28
1/*-
2 * Copyright (c) 2004 Mark R V Murray
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD$
27 */
28
29#define CDEV_MAJOR 2
29#define CDEV_MINOR_MEM 0
30#define CDEV_MINOR_KMEM 1
31
32d_open_t memopen;
33d_read_t memrw;
34#define memioctl (d_ioctl_t *)NULL
35d_mmap_t memmmap;
36
37void dev_mem_md_init(void);
30#define CDEV_MINOR_MEM 0
31#define CDEV_MINOR_KMEM 1
32
33d_open_t memopen;
34d_read_t memrw;
35#define memioctl (d_ioctl_t *)NULL
36d_mmap_t memmmap;
37
38void dev_mem_md_init(void);
39
40MALLOC_DECLARE(M_MEMDEV);