mbedtls_psa_interruptible_set_max_ops() function
Set the maximum number of ops allowed to be executed by an interruptible function in a single call.
Syntax
void mbedtls_psa_interruptible_set_max_ops(uint32_t max_ops); Arguments
max_ops
The maximum number of ops to be executed in a single call, this can be a number from 0 to #PSA_INTERRUPTIBLE_MAX_OPS_UNLIMITED, where 0 is obviously the least amount of work done per call.
Notes
The signature of this function is that of a PSA driver interruptible_set_max_ops entry point. This function behaves as an interruptible_set_max_ops entry point as defined in the PSA driver interface specification for transparent drivers.