#ifndef SERVICE_PROCESS_H
#define SERVICE_PROCESS_H
struct service_process {
int refcount;
unsigned int uid;
/* number of new connections process is currently accepting */
unsigned int available_count;
/* number of connections process has ever accepted */
unsigned int total_count;
/* time when process started idling, or 0 if we're not idling */
/* kill process if it hits idle timeout */
/* time when we last received a status update */
/* time when we last sent SIGINT to process */
/* kill the process if it doesn't send initial status notification */
};
int status);
#endif