mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
d75faecff8
closes #1133
17 lines
516 B
C++
17 lines
516 B
C++
|
|
#include "trick/VariableServer.hh"
|
|
|
|
int Trick::VariableServer::shutdown() {
|
|
listen_thread.cancel_thread() ;
|
|
std::map < pthread_t , VariableServerThread * >::iterator it ;
|
|
pthread_mutex_lock(&map_mutex) ;
|
|
for ( it = var_server_threads.begin() ; it != var_server_threads.end() ; it++ ) {
|
|
(*it).second->cancel_thread() ;
|
|
// cancelling causes each var_server_thread map element to be erased by the exit_var_thread function
|
|
}
|
|
pthread_mutex_unlock(&map_mutex) ;
|
|
|
|
return 0 ;
|
|
}
|
|
|