- ofac.c contains now only the command in initialisation function list - the other functions are moved to sicsutil.c - moved DoubleTime and the content of access.c to sicsutil.c - moved some initialisation code from ofac.c to the corresponding modules
27 lines
602 B
C
27 lines
602 B
C
/**
|
|
* This is for backgrounding operations in SICS. They run in an own
|
|
* task.
|
|
*
|
|
* copyright: see file COPYRIGHT
|
|
*
|
|
* Mark Koennecke, February 2009
|
|
*/
|
|
#ifndef BACKGROUND_H_
|
|
#define BACKGROUND_H_
|
|
|
|
/**
|
|
* interpreter inteface
|
|
*/
|
|
int BackgroundAction(SConnection * pCon, SicsInterp * pSics,
|
|
void *pData, int argc, char *argv[]);
|
|
/*
|
|
* actual function which does the backgrounding
|
|
*/
|
|
int BackgroundCommand(SConnection * pCon, char *command);
|
|
/*
|
|
* used only once for installing Background
|
|
*/
|
|
void InstallBackground(void);
|
|
|
|
#endif /*BACKGROUND_H_ */
|