summaryrefslogtreecommitdiff
path: root/src/evanix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/evanix.c')
-rw-r--r--src/evanix.c42
1 files changed, 41 insertions, 1 deletions
diff --git a/src/evanix.c b/src/evanix.c
index b552c8e..dcac070 100644
--- a/src/evanix.c
+++ b/src/evanix.c
@@ -1 +1,41 @@
-int main(void) {}
+#include <stdlib.h>
+#include <string.h>
+
+#include "queue.h"
+#include "util.h"
+
+int main(void)
+{
+ struct queue_thread *queue_thread = NULL;
+ FILE *stream = NULL;
+ int ret = 0;
+
+ ret = jobs_init(&stream);
+ if (ret < 0)
+ goto out_free;
+
+ ret = queue_thread_new(&queue_thread, stream);
+ if (ret < 0) {
+ free(stream);
+ goto out_free;
+ }
+
+ ret = pthread_create(&queue_thread->tid, NULL, queue_thread_entry,
+ queue_thread);
+ if (ret < 0) {
+ print_err("%s", strerror(ret));
+ ret = -ret;
+ goto out_free;
+ }
+
+ ret = pthread_join(queue_thread->tid, NULL);
+ if (ret < 0) {
+ print_err("%s", strerror(ret));
+ ret = -ret;
+ goto out_free;
+ }
+
+out_free:
+ queue_thread_free(queue_thread);
+ exit(ret < 0 ? EXIT_FAILURE : EXIT_SUCCESS);
+}