diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-03-11 12:42:31 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-03-11 12:42:31 +0100 |
commit | e491e996152f8bae8d0a94a145374e7b57661347 (patch) | |
tree | ddba8e86ced2a93ae9721adf929a9b47e47853da | |
parent | 523a01e93db829290b9f304fb31e5fe001ca2418 (diff) |
Fix libpthread conversion
* pfinet/io-ops.c (io_select_common): Call pthread_mutex_unlock instead of
__mutex_unlock.
-rw-r--r-- | pfinet/io-ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pfinet/io-ops.c b/pfinet/io-ops.c index 69bd93c5..96dbec85 100644 --- a/pfinet/io-ops.c +++ b/pfinet/io-ops.c @@ -286,7 +286,7 @@ io_select_common (struct sock_user *user, tsp); if (timedout) { - __mutex_unlock (&global_lock); + pthread_mutex_unlock (&global_lock); *select_type = 0; return 0; } |