comparison dmdscript_tango/threadcontext.d @ 3:8363a4bf6a8f

rename package: dmdscript to dmdscript_tango
author saaadel
date Sun, 24 Jan 2010 18:33:05 +0200
parents 55c2951c07be
children 6d905019f7bf
comparison
equal deleted inserted replaced
2:cca96fbcc1f8 3:8363a4bf6a8f
17 * For a C++ implementation of DMDScript, including COM support, 17 * For a C++ implementation of DMDScript, including COM support,
18 * see www.digitalmars.com/dscript/cppscript.html. 18 * see www.digitalmars.com/dscript/cppscript.html.
19 */ 19 */
20 20
21 21
22 module dmdscript.threadcontext; 22 module dmdscript_tango.threadcontext;
23 23
24 import std.thread; 24 import std.thread;
25 25
26 alias std.thread.Thread Thread; 26 alias std.thread.Thread Thread;
27 27
28 import dmdscript.script; 28 import dmdscript_tango.script;
29 import dmdscript.program; 29 import dmdscript_tango.program;
30 import dmdscript.dmath; 30 import dmdscript_tango.dmath;
31 import dmdscript.dobject; 31 import dmdscript_tango.dobject;
32 import dmdscript.dfunction; 32 import dmdscript_tango.dfunction;
33 33
34 // These are our per-thread global variables 34 // These are our per-thread global variables
35 35
36 struct ThreadContext 36 struct ThreadContext
37 { 37 {