[Previous] [Contents] [Next]

pmm_property_list()

Get a list of all properties associated with a node

Synopsis:

#include <sys/pmm.h>

int pmm_property_list(pmm_node_t *node, pm_property_attr_t *list, 
                                                       int size);

Library:

libc

Description:

This call is used to get a list of all properties associated with a node:

node
Pointer to the node.
list
Pointer to where the property list is copied.
size
Number of entries to be returned in list.

The return value of this call is the actual number of properties.

If list is non-NULL, the minimum of size and the actual number of properties are copied to list.

Each entry in the returned list specifies:

Returns:

Classification:

QNX Neutrino

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

See also:


[Previous] [Contents] [Next]