Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add context ucontext for windows.
[simgrid.git] / src / simix / smx_context_private.h
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 #ifndef _XBT_CONTEXT_PRIVATE_H
10 #define _XBT_CONTEXT_PRIVATE_H
11
12 #include "xbt/swag.h"
13 #include "simix/private.h"
14
15 SG_BEGIN_DECL()
16
17 /* *********************** */
18 /* Context type definition */
19 /* *********************** */
20 /* the following function pointers types describe the interface that all context
21    concepts must implement */
22 /* the following function pointers types describe the interface that all context
23    concepts must implement */
24
25 /* each context type derive from this structure, so they must contain this structure
26  * at their begining -- OOP in C :/ */
27 typedef struct s_smx_context {
28   s_xbt_swag_hookup_t hookup;
29   xbt_main_func_t code;
30   int argc;
31   char **argv;
32   void_f_pvoid_t cleanup_func;
33   void *cleanup_arg;
34 } s_smx_ctx_base_t;
35 /* methods of this class */
36 void smx_ctx_base_factory_init(smx_context_factory_t * factory);
37 int smx_ctx_base_factory_finalize(smx_context_factory_t * factory);
38
39 smx_context_t
40 smx_ctx_base_factory_create_context_sized(size_t size,
41     xbt_main_func_t code, int argc, char** argv,
42     void_f_pvoid_t cleanup_func, void* cleanup_arg);
43 void smx_ctx_base_free(smx_context_t context);
44 void smx_ctx_base_stop(smx_context_t context);
45
46 SG_END_DECL()
47 #endif /* !_XBT_CONTEXT_PRIVATE_H */
48
49