mirror of https://github.com/BOINC/boinc.git
32 lines
415 B
C
32 lines
415 B
C
/*
|
|
* condor/condor_slave.h
|
|
*
|
|
* DC-API functions of slave side
|
|
*
|
|
* (c) Daniel Drotos, 2006
|
|
*/
|
|
|
|
#ifndef __DC_API_CONDOR_SLAVE_H_
|
|
#define __DC_API_CONDOR_SLAVE_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/* Name of the checkpoint file */
|
|
#define CKPT_LABEL "dc_checkpoint"
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/* End of condor/condor_slave.h */
|
|
|
|
/* Local variables: */
|
|
/* c-file-style: "linux" */
|
|
/* End: */
|