int pthread_cond_signal(pthread_cond_t *cv)
{
- ESP_LOGV(TAG, "%s %p", __FUNCTION__, cv);
-
if (cv == NULL || *cv == (pthread_cond_t) 0) {
return EINVAL;
}
int pthread_cond_broadcast(pthread_cond_t *cv)
{
- ESP_LOGV(TAG, "%s %p", __FUNCTION__, cv);
-
if (cv == NULL || *cv == (pthread_cond_t) 0) {
return EINVAL;
}
int pthread_cond_wait(pthread_cond_t *cv, pthread_mutex_t *mut)
{
- ESP_LOGV(TAG, "%s %p %p", __FUNCTION__, cv, mut);
-
return pthread_cond_timedwait(cv, mut, NULL);
}
int ret;
TickType_t timeout_ticks;
- ESP_LOGV(TAG, "%s %p %p %p", __FUNCTION__, cv, mut, to);
-
if (cv == NULL || *cv == (pthread_cond_t) 0) {
return EINVAL;
}
{
(void) att; /* Unused argument as of now */
- ESP_LOGV(TAG, "%s %p %p", __FUNCTION__, cv, att);
-
if (cv == NULL) {
return EINVAL;
}
{
int ret = 0;
- ESP_LOGV(TAG, "%s %p", __FUNCTION__, cv);
if (cv == NULL || *cv == (pthread_cond_t) 0) {
return EINVAL;
}