Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
- Move simix_global->current_process to smx_current_context
[simgrid.git] / src / simix / smx_context_sysv_private.h
1 /* Functions of sysv context mecanism: lua inherites them                   */
2
3 /* Copyright (c) 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_SYSV_PRIVATE_H
10 #define _XBT_CONTEXT_SYSV_PRIVATE_H
11
12 #include "xbt/swag.h"
13 #include "simix/smx_context_private.h"
14 #include "portable.h"
15
16 SG_BEGIN_DECL()
17
18
19
20 /* lower this if you want to reduce the memory consumption  */
21 #ifndef CONTEXT_STACK_SIZE      /* allow lua to override this */
22 #define CONTEXT_STACK_SIZE 128*1024
23 #endif                          /*CONTEXT_STACK_SIZE */
24 #include "context_sysv_config.h"        /* loads context system definitions */
25 #ifdef _XBT_WIN32
26 #include <win32_ucontext.h>     /* context relative declarations */
27 #else
28 #include <ucontext.h>           /* context relative declarations */
29 #endif
30 typedef struct s_smx_ctx_sysv {
31   s_smx_ctx_base_t super;       /* Fields of super implementation */
32   ucontext_t uc;                /* the thread that execute the code */
33 #ifdef HAVE_VALGRIND_VALGRIND_H
34   unsigned int valgrind_stack_id;       /* the valgrind stack id */
35 #endif
36   char stack[CONTEXT_STACK_SIZE];       /* the thread stack size */
37 } s_smx_ctx_sysv_t, *smx_ctx_sysv_t;
38
39
40 void SIMIX_ctx_sysv_factory_init(smx_context_factory_t *factory);
41 int smx_ctx_sysv_factory_finalize(smx_context_factory_t *factory);
42
43 smx_context_t
44 smx_ctx_sysv_create_context_sized(size_t structure_size,
45                                   xbt_main_func_t code, int argc,
46                                   char **argv,
47                                   void_pfn_smxprocess_t cleanup_func,
48                                   void *data);
49 void smx_ctx_sysv_free(smx_context_t context);
50 void smx_ctx_sysv_stop(smx_context_t context);
51 void smx_ctx_sysv_suspend(smx_context_t context);
52 void smx_ctx_sysv_resume(smx_context_t new_context);
53 void smx_ctx_sysv_runall(xbt_swag_t processes);
54 void smx_ctx_sysv_runall_parallel(xbt_swag_t processes);
55
56 SG_END_DECL()
57 #endif                          /* !_XBT_CONTEXT_SYSV_PRIVATE_H */