blob: c51bc5d6d9af2fca4a55cb2dd6304e84c12da2b0 (
plain) (
tree)
|
|
#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);
|