Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Code refactor: move the functions associated to the request enabledness to mc_request.c
[simgrid.git] / src / simix / smx_context.c
1 /* a fast and simple context switching library                              */
2
3 /* Copyright (c) 2009, 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 "portable.h"
10 #include "xbt/log.h"
11 #include "xbt/swag.h"
12 #include "private.h"
13 #include "simix/context.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_context, simix,
16                                 "Context switching mecanism");
17
18 char* smx_context_factory_name = NULL; /* factory name specified by --cfg=simix/context=value */
19 smx_ctx_factory_initializer_t smx_factory_initializer_to_use = NULL;
20 smx_context_t smx_current_context;
21
22 /** 
23  * This function is called by SIMIX_global_init() to initialize the context module.
24  */
25 void SIMIX_context_mod_init(void)
26 {
27   if (!simix_global->context_factory) {
28     /* select the context factory to use to create the contexts */
29     if (smx_factory_initializer_to_use) {
30       (*smx_factory_initializer_to_use)(&(simix_global->context_factory));
31     }
32     else { /* use the factory specified by --cfg=simix/ctx:value */
33       if (smx_context_factory_name == NULL || !strcmp(smx_context_factory_name, "ucontext")) {
34         /* use ucontext */
35         SIMIX_ctx_sysv_factory_init(&simix_global->context_factory);
36       }
37       else if (!strcmp(smx_context_factory_name, "thread")) {
38         /* use os threads (either pthreads or windows ones) */
39         SIMIX_ctx_thread_factory_init(&simix_global->context_factory);
40       }
41       else if (!strcmp(smx_context_factory_name, "raw")) {
42         /* use raw contexts */
43         SIMIX_ctx_raw_factory_init(&simix_global->context_factory);
44       }
45       else {
46         xbt_die("Invalid context factory specified");
47       }
48     }
49   }
50 }
51
52 /**
53  * This function is call by SIMIX_clean() to finalize the context module.
54  */
55 void SIMIX_context_mod_exit(void)
56 {
57   if (simix_global->context_factory) {
58     smx_pfn_context_factory_finalize_t finalize_factory;
59
60     /* finalize the context factory */
61     finalize_factory = simix_global->context_factory->finalize;
62     (*finalize_factory) (&simix_global->context_factory);
63   }
64   xbt_dict_remove((xbt_dict_t) _surf_cfg_set,"simix/context");
65 }