Changes between Initial Version and Version 1 of Ticket #11119


Ignore:
Timestamp:
Mar 14, 2015, 7:51:10 AM (8 years ago)
Author:
viboes
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11119

    • Property Owner changed from Anthony Williams to viboes
    • Property Status newassigned
  • Ticket #11119 – Description

    initial v1  
    2222
    2323However mutex::unlock throws an exception.
     24
     25
     26{{{
     27void 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