common.h revision 664c7007d4a0116be2cce62295cd9fb9cd33eee0
#ifndef __COMMON_H
#define __COMMON_H
#include "lib.h"
#include "hash.h"
#include "settings.h"
#include "../auth/auth-interface.h"
#include "master-interface.h"
enum {
};
const char *process_type_names[PROCESS_TYPE_MAX];
/* processes */
#define PID_GET_PROCESS_TYPE(pid) \
#define PID_REMOVE_PROCESS_TYPE(pid) \
void clean_child_process(void);
/* misc */
#define VALIDATE_STR(str) \
#endif