Query: bus_child_present
OS: freebsd
Section: 9
Links: freebsd man pages all man pages
Forums: unix linux community forum categories
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
BUS_CHILD_PRESENT(9) BSD Kernel Developer's Manual BUS_CHILD_PRESENT(9)NAMEbus_child_present -- ask the bus driver to see if this device is still really presentSYNOPSIS#include <sys/param.h> #include <sys/bus.h> #include <machine/bus.h> #include <sys/rman.h> #include <machine/resource.h> int bus_child_present(device_t dev);DESCRIPTIONThe bus_child_present() function requests that the parent device driver of dev check to see if the hardware represented by dev is still phys- ically accessible at this time. While the notion of accessible varies from bus to bus, generally hardware that is not accessible cannot be accessed via the bus_space*() methods that would otherwise be used to access the device. This does not ask the question ``does this device have children?'' which can better be answered by device_get_children(9).RETURN VALUESA zero return value indicates that the device is not present in the system. A non-zero return value indicates that the device is present in the system, or that the state of the device cannot be determined.EXAMPLESThis is some example code. It only calls stop when the dc(4) device is actually present. device_t dev; dc_softc *sc; sc = device_get_softc(dev); if (bus_child_present(dev)) dc_stop(sc);SEE ALSOdevice(9), driver(9)AUTHORSThis manual page was written by Warner Losh <imp@FreeBSD.org>.BSDMarch 27, 2003 BSD
Related Man Pages |
---|
bus_activate_resource(9) - debian |
bus_child_present(9) - debian |
bus_activate_resource(9) - freebsd |
bus_activate_resource(9) - osx |
bus_set_resource(9) - hpux |
Similar Topics in the Unix Linux Community |
---|
D-BUS 1.2.1 (Default branch) |
Rw-rw-rw |
Board not present |