6 Simulator API 6.2 Simulator API Functions
API Reference Manual  /  6 Simulator API  / 

6.1 Simulator API Data Types

6.1.1 Generic Data Types

addr_prof_iter_t

NAME
addr_prof_iter_t
SYNOPSIS
typedef struct addr_prof_iter {
        uint64 (*next)(struct addr_prof_iter *i);
        void (*destroy)(struct addr_prof_iter *i);
        generic_address_t addr;
} addr_prof_iter_t;

DESCRIPTION
An address profile iterator will iterate over a specified portion of the address space in some unspecified order, and return every nonzero counter value exactly once. When done, it will return 0.

hap_flags_t

NAME
hap_flags_t
SYNOPSIS
typedef int hap_flags_t;

DESCRIPTION
The hap_flags_t is used to specify additional information about a hap. Since there are currently no values defined, the hap_flags_t will be removed in a future version.
SEE ALSO
SIM_hap_add_callback

6 Simulator API 6.2 Simulator API Functions