Query: resource_string_value
OS: freebsd
Section: 9
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
RESOURCE_INT_VALUE(9) BSD Kernel Developer's Manual RESOURCE_INT_VALUE(9)NAMEresource_int_value, resource_long_value, resource_string_value -- get a value from the hints mechanismSYNOPSIS#include <sys/param.h> #include <sys/bus.h> int resource_int_value(const char *name, int unit, const char *resname, int *result); int resource_long_value(const char *name, int unit, const char *resname, long *result); int resource_string_value(const char *name, int unit, const char *resname, const char **result);DESCRIPTIONThese functions fetch a value from the ``hints'' mechanism. The functions take the following arguments: name The name of the device to get the resource value from. unit The unit number of the device. -1 is special and is used for wildcard entries. resname The resource name. result A pointer to memory in which to store the resource value.RETURN VALUESIf successful, the functions return 0. Otherwise, a non-zero error code is returned.ERRORSThe functions will fail if: [ENOENT] The resource could not be found. [EFTYPE] Inappropriate resource type.SEE ALSOdevice(9), driver(9)AUTHORSThis manual page was written by Warner Losh <imp@FreeBSD.org>.BSDMarch 1, 2001 BSD
Related Man Pages |
---|
bus_deactivate_resource(9) - freebsd |
resource_string_value(9) - debian |
resource_long_value(9) - freebsd |
bus_activate_resource(9) - hpux |
bus_activate_resource(9) - osx |
Similar Topics in the Unix Linux Community |
---|
Problem with function which reutrns pointer to a value |