2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
2015-06-01 15:28:29 +00:00
|
|
|
#include "trick/VariableServerThread.hh"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
void Trick::VariableServerThread::preload_checkpoint() {
|
|
|
|
// Let the thread complete any data copying it has to do
|
|
|
|
// and then suspend data copying until the checkpoint is reloaded.
|
|
|
|
pthread_mutex_lock(©_mutex);
|
|
|
|
|
|
|
|
// Save the pause state of this thread.
|
|
|
|
saved_pause_cmd = pause_cmd;
|
|
|
|
|
|
|
|
// Disallow data writing.
|
|
|
|
pause_cmd = true ;
|
|
|
|
|
|
|
|
// Temporarily "disconnect" the variable references from Trick Managed Memory
|
|
|
|
// by tagging each as a "bad reference".
|
|
|
|
std::vector <VariableReference *>::iterator it ;
|
|
|
|
for (it = vars.begin(); it != vars.end() ; it++) {
|
|
|
|
(*it)->ref->address = (char*)&bad_ref_int;
|
|
|
|
(*it)->ref->attr = new ATTRIBUTES() ;
|
|
|
|
(*it)->ref->attr->type = TRICK_NUMBER_OF_TYPES ;
|
|
|
|
(*it)->ref->attr->units = (char *)"--" ;
|
|
|
|
(*it)->ref->attr->size = sizeof(int) ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Trick::VariableServerThread::restart() {
|
|
|
|
// Set the pause state of this thread back to its "pre-checkpoint reload" state.
|
|
|
|
pause_cmd = saved_pause_cmd ;
|
|
|
|
|
|
|
|
// Allow data copying to continue.
|
|
|
|
pthread_mutex_unlock(©_mutex);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|