2006-11-30 22:13:59 +02:00
|
|
|
#ifndef __WORKER_PROTOCOL_H
|
|
|
|
#define __WORKER_PROTOCOL_H
|
|
|
|
|
|
|
|
|
|
|
|
#define WORKER_MAGIC_1 0x6e697864
|
|
|
|
#define WORKER_MAGIC_2 0x6478696e
|
|
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
2006-11-30 22:45:20 +02:00
|
|
|
wopQuit,
|
|
|
|
wopIsValidPath,
|
|
|
|
wopQuerySubstitutes,
|
2006-12-01 00:43:55 +02:00
|
|
|
wopHasSubstitutes,
|
|
|
|
wopQueryPathHash,
|
|
|
|
wopQueryReferences,
|
|
|
|
wopQueryReferrers,
|
2006-11-30 22:45:20 +02:00
|
|
|
wopAddToStore,
|
|
|
|
wopAddTextToStore,
|
2006-12-01 00:43:55 +02:00
|
|
|
wopBuildDerivations,
|
|
|
|
wopEnsurePath,
|
2006-12-02 18:41:36 +02:00
|
|
|
wopAddTempRoot,
|
|
|
|
wopSyncWithGC
|
2006-11-30 22:13:59 +02:00
|
|
|
} WorkerOp;
|
|
|
|
|
|
|
|
|
2006-12-03 04:08:13 +02:00
|
|
|
#define STDERR_NEXT 0x6f6c6d67
|
|
|
|
#define STDERR_LAST 0x616c7473
|
|
|
|
#define STDERR_ERROR 0x63787470
|
|
|
|
|
|
|
|
|
2006-11-30 22:13:59 +02:00
|
|
|
#endif /* !__WORKER_PROTOCOL_H */
|