- Various little fixes to the TAS software

- Added a sync command for synchronizing a simulation server with the
  master server.
This commit is contained in:
cvs
2001-03-16 16:09:33 +00:00
parent 5be8359212
commit bae18e8686
24 changed files with 494 additions and 78 deletions

19
synchronize.h Normal file
View File

@ -0,0 +1,19 @@
/*
S y n c h r o n i z e
Synchronize parameters in this server with parameters from another
SICS server.
Mark Koennecke, March 2001
*/
#ifndef SICSSYNC
#define SICSSYNC
int MakeSync(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
int Synchronize(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
#endif