Changes between Initial Version and Version 1 of Ticket #11119
- Timestamp:
- Mar 14, 2015, 7:51:10 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11119
- Property Owner changed from to
- Property Status new → assigned
-
Ticket #11119 – Description
initial v1 22 22 23 23 However mutex::unlock throws an exception. 24 25 26 {{{ 27 void unlock() 28 { 29 int res = posix::pthread_mutex_unlock(&m); 30 if (res) 31 { 32 boost::throw_exception(lock_error(res,"boost: mutex unlock failed in pthread_mutex_unlock")); 33 } 34 } 35 }}} 36