Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Clean indentation and coding style in SIMIX
[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 /*Hack: let msg load directly the right factory */
17 typedef void (*SIMIX_ctx_factory_initializer_t)(smx_context_factory_t*);
18 extern SIMIX_ctx_factory_initializer_t factory_initializer_to_use;
19
20 extern int _surf_parallel_contexts;
21 smx_context_t smx_current_context;
22
23 /* *********************** */
24 /* Context type definition */
25 /* *********************** */
26 /* the following function pointers types describe the interface that all context
27    concepts must implement */
28 /* each context type derive from this structure, so they must contain this structure
29  * at their begining -- OOP in C :/ */
30 typedef struct s_smx_context {
31   s_xbt_swag_hookup_t hookup;
32   xbt_main_func_t code;
33   int argc;
34   char **argv;
35   void_pfn_smxprocess_t cleanup_func;
36   void *data;   /* Here SIMIX stores the smx_process_t containing the context */
37 } s_smx_ctx_base_t;
38
39 /* methods of this class */
40 void smx_ctx_base_factory_init(smx_context_factory_t *factory);
41 int smx_ctx_base_factory_finalize(smx_context_factory_t *factory);
42
43 smx_context_t
44 smx_ctx_base_factory_create_context_sized(size_t size,
45                                           xbt_main_func_t code, int argc,
46                                           char **argv,
47                                           void_pfn_smxprocess_t cleanup,
48                                           void* data);
49 void smx_ctx_base_free(smx_context_t context);
50 void smx_ctx_base_stop(smx_context_t context);
51 smx_context_t smx_ctx_base_self(void);
52 void *smx_ctx_base_get_data(smx_context_t context);
53
54 SG_END_DECL()
55
56 #endif                          /* !_XBT_CONTEXT_PRIVATE_H */