[Previous] [Contents] [Next]

pci_detach()

Disconnect from the PCI server

Synopsis:

#include <hw/pci.h>

int pci_detach( unsigned handle );

Library:

libc

Description:

The pci_detach() function disconnects from the PCI server. Any resources allocated with pci_attach_device() are released.


Note: Don't call any of the other pci_*() functions after calling pci_detach() (unless you've reattached with pci_attach()).

The handle argument is the value returned by a successful call to pci_attach().

Returns:

PCI_SUCCESS.

Classification:

QNX 6

Safety:
Cancellation point Yes
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

pci_attach(), pci_attach_device(), pci_detach_device(), pci_find_class(), pci_find_device(), pci_present(), pci_read_config(), pci_read_config8(), pci_read_config16(), pci_read_config32(), pci_rescan_bus(), pci_write_config(), pci_write_config8(), pci_write_config16(), pci_write_config32()


[Previous] [Contents] [Next]