Вопрос

So, I'm getting an error on this line of code;

else if(lockError == EBUSY)

I get the error;

use of undeclared identifier 'EBUSY'

How do I compare my int lockError to the EBUSY that might be returned when I try a pthread_mutex_unlock.

Это было полезно?

Решение

You forgot to include #include<errno.h> where EBSUY is defined. See errno.h.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top