[llvm-commits] [vmkit] r51051 - /vmkit/trunk/include/mvm/Threads/Thread.h
Nicolas Geoffray
nicolas.geoffray at lip6.fr
Tue May 13 08:35:00 PDT 2008
Author: geoffray
Date: Tue May 13 10:35:00 2008
New Revision: 51051
URL: http://llvm.org/viewvc/llvm-project?rev=51051&view=rev
Log:
Add a baseSP info on a thread object. This allows to be
platform independent when backtracing.
Modified:
vmkit/trunk/include/mvm/Threads/Thread.h
Modified: vmkit/trunk/include/mvm/Threads/Thread.h
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/include/mvm/Threads/Thread.h?rev=51051&r1=51050&r2=51051&view=diff
==============================================================================
--- vmkit/trunk/include/mvm/Threads/Thread.h (original)
+++ vmkit/trunk/include/mvm/Threads/Thread.h Tue May 13 10:35:00 2008
@@ -30,6 +30,7 @@
static mvm::Key<Thread>* threadKey;
Collector* GC;
+ void* baseSP;
static Thread* get() {
return (Thread*)Thread::threadKey->get();
}
More information about the llvm-commits
mailing list