This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-06-05 03:19:36 +02:00
|
|
|
#ifndef __PROCESS_H__
|
|
|
|
#define __PROCESS_H__
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#define TMPDIR "/tmp/ipc/"
|
|
|
|
|
|
|
|
// TODO to check the right length for a path
|
|
|
|
#define PATH_MAX BUFSIZ
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
struct process {
|
|
|
|
pid_t pid;
|
|
|
|
unsigned int version;
|
|
|
|
unsigned int index;
|
|
|
|
char path_in [PATH_MAX];
|
|
|
|
char path_out [PATH_MAX];
|
2016-10-27 16:26:16 +02:00
|
|
|
char path_proc [PATH_MAX];
|
|
|
|
int proc_fd;
|
2016-06-05 03:19:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct process * srv_process_copy (const struct process *p);
|
|
|
|
|
|
|
|
int srv_process_eq (const struct process *p1, const struct process *p2);
|
|
|
|
|
|
|
|
// create the service process structure
|
|
|
|
void srv_process_gen (struct process *p
|
|
|
|
, pid_t pid, unsigned int index, unsigned int version);
|
|
|
|
|
2016-06-07 13:49:23 +02:00
|
|
|
void srv_process_print (struct process *);
|
2016-06-05 03:19:36 +02:00
|
|
|
|
|
|
|
#endif
|