| 508 | } |
| 509 | |
| 510 | static int dm_mbedtls_condition_init(mbedtls_platform_condition_variable_t* condition_wrapper) |
| 511 | { |
| 512 | condition_wrapper->condition = dmConditionVariable::New(); |
| 513 | return condition_wrapper->condition ? 0 : MBEDTLS_ERR_THREADING_USAGE_ERROR; |
| 514 | } |
| 515 | |
| 516 | static void dm_mbedtls_condition_free(mbedtls_platform_condition_variable_t* condition_wrapper) |
| 517 | { |