Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/core/process.h

34 lines
596 B
C

#ifndef __PROCESS_H__
#define __PROCESS_H__
#if 0
// TODO
// tout revoir
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct process {
unsigned int version;
unsigned int index;
int proc_fd;
};
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
, unsigned int index, unsigned int version);
void srv_process_print (struct process *);
#endif
#endif