Skip to content

Commit

Permalink
Merge pull request #9 from sadhyama/nopoll_yocto
Browse files Browse the repository at this point in the history
To fix parodus build issue due to argument mismatch for nopoll_yocto …
  • Loading branch information
schmidtw authored Oct 17, 2017
2 parents c5d468d + 056de90 commit 7f79eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nopoll_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ static void nopoll_init_recursive_mut_once(void)
pthread_mutexattr_t attr;
pthread_mutexattr_init(&attr);
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
pthread_mutex_init(&mutex_once, &attr);
pthread_mutex_init(&send_mutex, &attr);
pthread_mutexattr_destroy(&attr);
}

Expand Down

0 comments on commit 7f79eaa

Please sign in to comment.