summaryrefslogtreecommitdiff
path: root/include/build.h
blob: c51bc5d6d9af2fca4a55cb2dd6304e84c12da2b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <pthread.h>
#include <sys/queue.h>

#include "queue.h"

struct build_thread {
	pthread_t tid;
	struct queue *queue;
};

void *build_thread_entry(void *queue_thread);
int build_thread_new(struct build_thread **build_thread, struct queue *q);