comparison base/src/java/lang/Thread.d @ 109:8ae65ae167f5

Updated swt win32 for DMD 1.063 and latest Tango trunk.
author Jacob Carlborg <doob@me.com>
date Wed, 15 Sep 2010 16:42:28 +0200
parents af948d4bbf8c
children 9f4c18c268b2
comparison
equal deleted inserted replaced
108:b397a43d66d1 109:8ae65ae167f5
171 return cast(String) "Thread "~cast(String)thread.name; 171 return cast(String) "Thread "~cast(String)thread.name;
172 } 172 }
173 public static void yield(){ 173 public static void yield(){
174 TThread.yield(); 174 TThread.yield();
175 } 175 }
176
177 public static void joinAll(){
178 version (Tango)
179 tango.core.Thread.thread_joinAll();
180 else
181 core.thread.thread_joinAll();
182 }
176 } 183 }
177 184