Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
write java class files into CMAKE_CURRENT_BINARY_DIR, not into source dir
[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/smx_context_private.h"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_context, simix,
16                                 "Context switching mecanism");
17
18 SIMIX_ctx_factory_initializer_t factory_initializer_to_use = NULL;
19
20 /** 
21  * This function is called by SIMIX_global_init() to initialize the context module.
22  */
23 void SIMIX_context_mod_init(void)
24 {
25   if (!simix_global->context_factory) {
26     /* select context factory to use to create the context(depends of the macro definitions) */
27     if (factory_initializer_to_use) {
28       (*factory_initializer_to_use)(&(simix_global->context_factory));
29     } else {
30 #ifdef CONTEXT_THREADS /* Use os threads (either pthreads or windows ones) */
31       SIMIX_ctx_thread_factory_init(&simix_global->context_factory);
32 #elif defined(CONTEXT_UCONTEXT) /* use ucontext */
33       SIMIX_ctx_sysv_factory_init(&simix_global->context_factory);
34 #else
35 #error ERROR [__FILE__, line __LINE__]: no context implementation specified.
36 #endif
37     }
38   }
39 }
40
41 /**
42  * This function is call by SIMIX_clean() to finalize the context module.
43  */
44 void SIMIX_context_mod_exit(void)
45 {
46   if (simix_global->context_factory) {
47     smx_pfn_context_factory_finalize_t finalize_factory;
48
49     /* finalize the context factory */
50     finalize_factory = simix_global->context_factory->finalize;
51     (*finalize_factory) (&simix_global->context_factory);
52   }
53 }