aclrtCntNotifyWaitInfo

1
2
3
4
5
6
7
typedef struct {
    aclrtCntNotifyWaitMode mode;  // Wait mode
    uint32_t value;
    uint32_t timeout;             // Timeout interval, in seconds. The value 0 indicates forever waiting.
    uint8_t  isClear;             // Whether to automatically clear the count of CntNotify after the wait is unblocked. The value 1 indicates that the count is cleared, and the value 0 indicates that the count is not cleared.
    uint8_t rev[3];
} aclrtCntNotifyWaitInfo;

For details about the definition of the mode structure, see aclrtCntNotifyWaitMode.