From: Brian Demsky <bdemsky@uci.edu>
Date: Mon, 21 May 2012 06:20:43 +0000 (-0700)
Subject: fix code to be 64 bit clean
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c441974826572b713174c571104bdf9bd37c018b;p=cdsspec-compiler.git

fix code to be 64 bit clean
---

diff --git a/threads.cc b/threads.cc
index 9929774..0ed7bdc 100644
--- a/threads.cc
+++ b/threads.cc
@@ -1,3 +1,5 @@
+/* -*- Mode: C; indent-tabs-mode: t -*- */
+
 #include "libthreads.h"
 #include "common.h"
 #include "threads.h"
@@ -22,6 +24,13 @@ Thread * thread_current(void)
 	return model->scheduler->get_current_thread();
 }
 
+/* This method just gets around makecontext not being 64-bit clean */
+
+void thread_startup() {
+	Thread * curr_thread=thread_current();
+	curr_thread->start_routine(curr_thread->arg);
+}
+
 int Thread::create_context()
 {
 	int ret;
@@ -36,7 +45,7 @@ int Thread::create_context()
 	context.uc_stack.ss_size = STACK_SIZE;
 	context.uc_stack.ss_flags = 0;
 	context.uc_link = model->get_system_context();
-	makecontext(&context, start_routine, 1, arg);
+	makecontext(&context, start_routine, 1);
 
 	return 0;
 }
@@ -61,7 +70,6 @@ void Thread::complete()
 	}
 }
 
-
 Thread::Thread(thrd_t *t, void (*func)(), void *a) {
 	int ret;