]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/os-windows-nt.hpp
thread_id is a pthread_t on unix
[factor.git] / vm / os-windows-nt.hpp
index 385553e11e1c81d135fb3ecba8a017d35d8a62ef..366348a898abecde06338f61ba9c7f8831afa122 100755 (executable)
@@ -29,6 +29,10 @@ FACTOR_STDCALL LONG exception_handler(PEXCEPTION_POINTERS pe);
 typedef HANDLE THREADHANDLE;
 
 THREADHANDLE start_thread(void *(*start_routine)(void *),void *args);
-unsigned long thread_id();
+
+void init_platform_globals();
+struct factorvm;
+void register_vm_with_thread(factorvm *vm);
+factorvm *tls_vm();
 
 }