*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: bus_get_resource | Section: 9 | Source: FreeBSD | File: bus_get_resource.9.gz
BUS_GET_RESOURCE(9) FreeBSD Kernel Developer's Manual BUS_GET_RESOURCE(9) NAME bus_get_resource - read a resource range/value with a given resource ID SYNOPSIS #include <sys/param.h> #include <sys/bus.h> #include <sys/rman.h> int bus_get_resource(device_t dev, int type, int rid, rman_res_t *startp, rman_res_t *countp); DESCRIPTION The bus_get_resource() function reads the range or value of the resource type, rid pair and stores it in the startp and countp arguments. The arguments are as follows: dev The device to read the resource from. type The type of resource you want to read. It is one of: SYS_RES_IRQ for IRQs SYS_RES_DRQ for ISA DMA lines SYS_RES_MEMORY for I/O memory SYS_RES_IOPORT for I/O ports rid A bus-specific handle that identifies the resource being read. startp A pointer to the start address of this resource. countp A pointer to the length of the resource. For example, the size of the memory in bytes. RETURN VALUES Zero is returned on success, otherwise an error is returned. SEE ALSO bus_set_resource(9), device(9), driver(9) AUTHORS This manual page was written by Sascha Wildner. FreeBSD 14.1-RELEASE-p8 September 26, 2015 FreeBSD 14.1-RELEASE-p8

Navigation Options