ménage dans les fichiers core
parent
ee2ff72ed3
commit
6a851b2e66
|
@ -1,5 +1,9 @@
|
|||
#include "process.h"
|
||||
|
||||
// TODO
|
||||
// tout revoir ici
|
||||
|
||||
#if 0
|
||||
struct process * srv_process_copy (const struct process *p)
|
||||
{
|
||||
if (p == NULL)
|
||||
|
@ -28,3 +32,4 @@ void srv_process_print (struct process *p)
|
|||
if (p != NULL)
|
||||
printf ("process %d : index %d, version %d\n", p->index, p->version);
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
#ifndef __PROCESS_H__
|
||||
#define __PROCESS_H__
|
||||
|
||||
#if 0
|
||||
|
||||
// TODO
|
||||
// tout revoir
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
|
@ -25,3 +30,4 @@ void srv_process_gen (struct process *p
|
|||
void srv_process_print (struct process *);
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#include "pubsub.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
#if 0
|
||||
|
||||
#include <string.h> // strndup
|
||||
|
||||
void pubsubd_msg_serialize (const struct pubsub_msg *msg, char **data, size_t *len)
|
||||
|
@ -186,3 +188,4 @@ void pubsub_msg_recv (struct process *p, struct pubsub_msg *m)
|
|||
}
|
||||
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
#include "process.h"
|
||||
#include "queue.h"
|
||||
|
||||
#if 0
|
||||
|
||||
#define PUBSUB_TYPE_DISCONNECT 0
|
||||
#define PUBSUB_TYPE_MESSAGE 1
|
||||
#define PUBSUB_TYPE_ERROR 2
|
||||
|
@ -38,3 +40,5 @@ void pubsub_connection (struct service *srv, struct process *p, enum app_list_el
|
|||
void pubsubd_quit (struct service *srv);
|
||||
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Reference in New Issue