Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add context ucontext for windows.
[simgrid.git] / src / simix / smx_context_lua.c
1 /* context_lua - implementation of context switching with lua coroutines */
2
3 /* Copyright (c) 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include <lauxlib.h>
10 #include <lualib.h>
11
12 #include "smx_context_private.h"
13
14 /* We don't use that factory at all for now. This may change at some point,
15  * to reduce the amount of memory per user thread in sysv
16  */
17
18 lua_State *simgrid_lua_state;
19 void SIMIX_ctx_lua_factory_init(smx_context_factory_t *factory) {
20 }
21
22 #ifdef KILLME
23 /* lua can run with ultra tiny stacks since the user code lives in lua stacks, not the main one */
24 //#define CONTEXT_STACK_SIZE 4*1024
25
26 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(lua);
27
28
29 static smx_context_t 
30 smx_ctx_lua_create_context(xbt_main_func_t code, int argc, char** argv, 
31     void_f_pvoid_t cleanup_func, void* cleanup_arg);
32
33 static int smx_ctx_lua_factory_finalize(smx_context_factory_t *factory);
34
35 static void smx_ctx_lua_free(smx_context_t context);
36 static void smx_ctx_lua_stop(smx_context_t context);
37 static void smx_ctx_lua_suspend(smx_context_t context);
38 static void smx_ctx_lua_resume(smx_context_t new_context);
39
40
41 void SIMIX_ctx_lua_factory_init(smx_context_factory_t *factory) {
42
43   smx_ctx_base_factory_init(factory);
44
45   (*factory)->create_context = smx_ctx_lua_create_context;
46   /* don't override (*factory)->finalize */;
47   (*factory)->free = smx_ctx_sysv_free;
48   (*factory)->stop = smx_ctx_sysv_stop;
49   (*factory)->suspend = smx_ctx_sysv_suspend;
50   (*factory)->resume = smx_ctx_sysv_resume;
51   (*factory)->name = "smx_lua_context_factory";
52
53   INFO0("Lua Factory created");
54 }
55
56 static smx_context_t 
57 smx_ctx_lua_create_context(xbt_main_func_t code, int argc, char** argv, 
58     void_f_pvoid_t cleanup_func, void* cleanup_arg) {
59
60   return smx_ctx_sysv_create_context_sized(sizeof(s_smx_ctx_sysv_t),
61       code,argc,argv,cleanup_func,cleanup_arg);
62 }
63 #if KILLME
64 static void smx_ctx_lua_free(smx_context_t context) {
65
66   if (context){
67     DEBUG1("smx_ctx_lua_free_context(%p)",context);
68
69   }
70
71   smx_ctx_sysv_free(context);
72 }
73
74 static void smx_ctx_lua_stop(smx_context_t pcontext) {
75   DEBUG1("Stopping '%s' (nothing to do)",pcontext->argv[0]);
76   smx_ctx_sysv_stop(pcontext);
77 }
78
79 static void smx_ctx_lua_suspend(smx_context_t pcontext) {
80   smx_ctx_lua_t context = (smx_ctx_lua_t)pcontext;
81   DEBUG1("Suspending '%s' (using sysv facilities)",context->super.super.argv[0]);
82   smx_ctx_sysv_suspend(pcontext);
83
84   DEBUG0("Back from call yielding");
85 }
86
87 static void 
88 smx_ctx_lua_resume(smx_context_t new_context) {
89   smx_ctx_lua_t context = (smx_ctx_lua_t)new_context;
90   DEBUG1("Resuming %s",context->super.super.argv[0]);
91   smx_ctx_sysv_resume(new_context);
92 }
93 #endif
94
95 #endif