csched_proto.h

来自「Path MPICH-V for MPICH the MPI Implement」· C头文件 代码 · 共 20 行

H
20
字号
/** @file csched_proto.h defines constant used between daemon and checkpoint scheduler */#ifndef CSCHED_PROTO_H#define CSCHED_PROTO_H/* server->client */#define CSCHED_REQ_CHECKPOINT       1 /* ask for checkpoint */#define CSCHED_REQ_CKPTEND          2 /* warn about end of global checkpointing *//* client->server */#define CSCHED_REP_END_CHECKPOINT   3 /* warn of the end of local checkpointing */#define CSCHED_END_RESTART          4 /* warn of the end of daemon restart*//** defines the request implementation */struct csched_req {  unsigned char type; /**< request as a char */};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?