:man| Alphabetical   Categories   About us 
 
DEVICE_GET_SOFTC (9) | Kernel routines | Unix Manual Pages | :man

NAME

device_get_softc - access driver private instance variables

CONTENTS

Synopsis
Description
Return Values
See Also
Authors

SYNOPSIS


.In sys/param.h
.In sys/bus.h void * device_get_softc "device_t dev"

DESCRIPTION

Return the driver-specific state of dev. The softc is automatically allocated and zeroed the first time it is requested. The size of the allocation is determined by the device’s
.Vt driver_t information used to define the driver. The softc typically encapsulates the state of this instance of the device.

Driver writers are discouraged from using their own softc management mechanisms. Driver writers should not copy such mechanisms found in drivers in the tree that predates this function.

RETURN VALUES

The pointer to the driver-specific instance variable is returned.

SEE ALSO

device(9), device_set_softc(9), driver(9)

AUTHORS

 
Created by Blin Media, 2008-2013