Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
e68769e77c60cedfa03c667ee48c83e655231fc8
[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 /* each context type derive from this structure, so they must contain this structure
25  * at their begining -- OOP in C :/ */
26 typedef struct s_smx_context {
27   s_xbt_swag_hookup_t hookup;
28   xbt_main_func_t code;
29   int argc;
30   char **argv;
31   void_f_pvoid_t cleanup_func;
32   void *cleanup_arg;
33 } s_smx_ctx_base_t;
34 /* methods of this class */
35 void smx_ctx_base_factory_init(smx_context_factory_t * factory);
36 int smx_ctx_base_factory_finalize(smx_context_factory_t * factory);
37
38 smx_context_t
39 smx_ctx_base_factory_create_context_sized(size_t size,
40                                           xbt_main_func_t code, int argc,
41                                           char **argv,
42                                           void_f_pvoid_t cleanup_func,
43                                           void *cleanup_arg);
44 void smx_ctx_base_free(smx_context_t context);
45 void smx_ctx_base_stop(smx_context_t context);
46
47 SG_END_DECL()
48 #endif                          /* !_XBT_CONTEXT_PRIVATE_H */