1 /* context_base - Code factorization across context switching implementations */
3 /* Copyright (c) 2010. The SimGrid Team.
4 * All rights reserved. */
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. */
10 #include "xbt/function_types.h"
11 #include "simix/simix.h"
12 #include "simix/context.h"
14 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(bindings);
16 void smx_ctx_base_factory_init(smx_context_factory_t *factory)
18 /* instantiate the context factory */
19 *factory = xbt_new0(s_smx_context_factory_t, 1);
21 (*factory)->create_context = NULL;
22 (*factory)->finalize = smx_ctx_base_factory_finalize;
23 (*factory)->free = smx_ctx_base_free;
24 (*factory)->stop = smx_ctx_base_stop;
25 (*factory)->suspend = NULL;
26 (*factory)->runall = NULL;
27 (*factory)->self = smx_ctx_base_self;
28 (*factory)->get_data = smx_ctx_base_get_data;
29 (*factory)->get_thread_id = smx_ctx_base_get_thread_id;
31 (*factory)->name = "base context factory";
34 int smx_ctx_base_factory_finalize(smx_context_factory_t * factory)
42 smx_ctx_base_factory_create_context_sized(size_t size,
43 xbt_main_func_t code, int argc,
45 void_pfn_smxprocess_t cleanup_func,
48 smx_context_t context = xbt_malloc0(size);
50 /* If the user provided a function for the process then use it.
51 Otherwise, it is the context for maestro and we should set it as the
54 context->cleanup_func = cleanup_func;
59 smx_current_context = context;
66 void smx_ctx_base_free(smx_context_t context)
74 for (i = 0; i < context->argc; i++)
76 free(context->argv[i]);
86 void smx_ctx_base_stop(smx_context_t context)
88 if (context->cleanup_func)
89 (*(context->cleanup_func)) (context->data);
90 SIMIX_req_process_cleanup(context->data);
93 smx_context_t smx_ctx_base_self(void)
95 return smx_current_context;
98 void *smx_ctx_base_get_data(smx_context_t context)
100 return context->data;
103 int smx_ctx_base_get_thread_id()