summaryrefslogtreecommitdiff
path: root/globals.m
diff options
context:
space:
mode:
authorMatthias Benkard <mulk@minimulk.mst-plus>2008-09-20 13:44:25 +0200
committerMatthias Benkard <mulk@minimulk.mst-plus>2008-09-20 13:44:25 +0200
commit7e5a799a46f6aca1525efa2df38026a1917f3edd (patch)
treeef4a7a50300e07643a863b501f60115cf724bf1d /globals.m
parent5dc8e497315ba791c8a8de021f3d2d292566fb56 (diff)
Add class MLKContinuation.
Diffstat (limited to 'globals.m')
-rw-r--r--globals.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/globals.m b/globals.m
index 8781620..e97ff56 100644
--- a/globals.m
+++ b/globals.m
@@ -20,8 +20,8 @@
#import <Foundation/NSObject.h>
-
id MLKEndOfArgumentsMarker;
+CONTINUATION *MLKRootContinuation;
id MLKDefaultCompiler = nil;
BOOL MLKLoadCompilesP = NO;
@@ -34,6 +34,8 @@ BOOL MLKLoadCompilesP = NO;
@implementation MLKGlobalManager
+(void) load
{
+ STACKITEM i;
MLKEndOfArgumentsMarker = [[NSObject alloc] init];
+ MLKRootContinuation = make_root_continuation (&i);
}
@end