summaryrefslogtreecommitdiff
path: root/src/Threads.cc
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-12-04 11:53:55 -0800
committerPixel <pixel@nobis-crew.org>2011-12-04 11:53:55 -0800
commit67432fe6501e1ae011870310b1dbcfb49b5233a8 (patch)
treefded68e0b61d4fcdfd2f424f53a5c3b8370d477c /src/Threads.cc
parentf99192cb59bb3e09ae4841bb790c57969fbe2003 (diff)
Refactored the Thread code a bit, and created the GlobalThread class, for threads that are created on startup.
Diffstat (limited to 'src/Threads.cc')
-rw-r--r--src/Threads.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Threads.cc b/src/Threads.cc
index df19da2..de70933 100644
--- a/src/Threads.cc
+++ b/src/Threads.cc
@@ -57,5 +57,3 @@ void Balau::Thread::threadStart() {
r = pthread_attr_destroy(&attr);
RAssert(r == 0, "Couldn't destroy pthread attribute; r = %i", r);
}
-
-void Balau::Thread::threadExit() { }