Updated: April 19, 2023 |
Find a tag in the hwinfo structure
#include <hw/sysinfo.h> unsigned hwi_find_tag( unsigned start, int curr_item, const char * tagname );
For the initial call, set this argument to HWI_NULL_OFF. If the item found isn't the one that you want, pass the return value from the first call to hwi_find_tag() as the start parameter of the next call. This makes the search pick up where it left off. You can repeat this process as many times as required (the return value from the second call going into the start parameter of the third, etc).
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The hwi_find_tag() function finds the tag named tagname.
The offset of the tag, or HWI_NULL_OFF if the tag wasn't found.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | Yes |
Signal handler | Yes |
Thread | Yes |