Introduce src, obj, build, docs & modify Makefile

This commit is contained in:
2018-02-16 15:30:36 +02:00
parent 3a0ccd3b31
commit bd9ebee627
29 changed files with 15 additions and 21 deletions

13
src/job_queue.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef JOB_QUEUE_H
#define JOB_QUEUE_H
#include "protocol.h"
//void* create_job(void *arg);
int start_msg_queue(void);
void free_queue(int id);
int start_job_queue(int poolsize);
int add_msg_to_queue(int id, struct msg_t buf);
#endif /* JOB_QUEUE_H */