This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Problems with pthread mutexes - update


Hi all,

This is a follow up to the setting mutex attribute issue, it turns
out Brian was correct, by zeroing off the pthread_mutexattr_t with
memset all the nastiness seems to go away...

The following code which doesn't exhibit the previously mentioned
error:

 int result = 0;
 pthread_mutexattr_t mutex_attr;
 memset(&mutex_attr,0,sizeof(mutex_attr));

 if ((result = pthread_mutexattr_init(&mutex_attr)) != 0)
 {
    printf("Error - Description: %s\n",stderror(result));
    exit(EXIT_FAILURE);
 }




Arash Partow __________________________________________________ Be one who knows what they don't know, Instead of being one who knows not what they don't know, Thinking they know everything about all things. http://www.partow.net



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]