mirror of
https://github.com/nasa/trick.git
synced 2025-02-06 10:59:27 +00:00
Initial checkin of STL checkpointing. This checkin only covers the sequential STLs, vector, list, deque, set, and multiset. This checkin does include the changes in Trick header files to include/exclude our STLs properly to make a restartable checkpoint. refs #206
15 lines
270 B
C++
15 lines
270 B
C++
|
|
#include <iostream>
|
|
|
|
#include "trick/Executive.hh"
|
|
#include "trick/exec_proto.h"
|
|
#include "trick/memorymanager_c_intf.h"
|
|
|
|
int Trick::Executive::post_checkpoint() {
|
|
|
|
TMM_delete_var_a(all_jobs_for_checkpoint) ;
|
|
all_jobs_for_checkpoint = NULL ;
|
|
return(0) ;
|
|
|
|
}
|