Skip to content
Snippets Groups Projects

Added add_lib_to_ld_config.sh and remove_lib_from_ld_config.sh user scripts....

Merged Sergi Hernandez requested to merge ubuntu_18_04 into master
1 file
+ 1
7
Compare changes
  • Side-by-side
  • Inline
+ 1
7
@@ -74,13 +74,7 @@ void CMutex::exit(void)
CMutex::~CMutex()
{
int error=0;
this->try_enter();
this->exit();
if((error=pthread_mutex_destroy(&this->access))!=0)
{
/* handle exception */
throw CMutexException(_HERE_,"Impossible to destroy the mutex.\n");
}
pthread_mutex_destroy(&this->access);
}
Loading