Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / simix / smx_process_private.h
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef _SIMIX_PROCESS_PRIVATE_H
8 #define _SIMIX_PROCESS_PRIVATE_H
9
10 #include "simgrid/simix.h"
11 #include "smx_smurf_private.h"
12
13 typedef struct s_smx_process_exit_fun {
14   int_f_pvoid_t fun;
15   void *arg;
16 } s_smx_process_exit_fun_t, *smx_process_exit_fun_t;
17
18 typedef struct s_smx_process_arg {
19   char *name;
20   xbt_main_func_t code;
21   void *data;
22   const char *hostname;
23   int argc;
24   char **argv;
25   double kill_time;
26   xbt_dict_t properties;
27   unsigned auto_restart:1;
28 } s_smx_process_arg_t, *smx_process_arg_t;
29
30
31 /** @brief Process datatype */
32 typedef struct s_smx_process {
33   s_xbt_swag_hookup_t process_hookup;
34   s_xbt_swag_hookup_t synchro_hookup;   /* process_to_run or mutex->sleeping and co */
35   s_xbt_swag_hookup_t host_proc_hookup;
36   s_xbt_swag_hookup_t destroy_hookup;
37
38   unsigned long pid;
39   char *name;                   /**< @brief process name if any */
40   smx_host_t smx_host;          /* the host on which the process is running */
41   smx_context_t context;        /* the context (uctx/raw/thread) that executes the user function */
42   xbt_running_ctx_t *running_ctx;
43   unsigned doexception:1;
44   unsigned blocked:1;
45   unsigned suspended:1;
46   unsigned auto_restart:1;
47
48   smx_host_t new_host;          /* if not null, the host on which the process must migrate to */
49   smx_action_t waiting_action;  /* the current blocking action if any */
50   xbt_fifo_t comms;       /* the current non-blocking communication actions */
51   xbt_dict_t properties;
52   s_smx_simcall_t simcall;
53   void *data;                   /* kept for compatibility, it should be replaced with moddata */
54   xbt_dynar_t on_exit;     /* list of functions executed when the process dies */
55
56   xbt_main_func_t code;
57   int argc;
58   char **argv;
59   double kill_time;
60
61 } s_smx_process_t;
62
63
64 void SIMIX_process_create(smx_process_t *process,
65                           const char *name,
66                           xbt_main_func_t code,
67                           void *data,
68                           const char *hostname,
69                           double kill_time,
70                           int argc, char **argv,
71                           xbt_dict_t properties,
72                           int auto_restart);
73 void SIMIX_process_runall(void);
74 void SIMIX_process_kill(smx_process_t process, smx_process_t issuer);
75 void SIMIX_process_killall(smx_process_t issuer);
76 smx_process_t SIMIX_process_create_from_wrapper(smx_process_arg_t args);
77 void SIMIX_create_maestro_process(void);
78 void SIMIX_process_stop(smx_process_t arg);
79 void SIMIX_process_cleanup(smx_process_t arg);
80 void SIMIX_process_empty_trash(void);
81 void SIMIX_process_yield(smx_process_t self);
82 xbt_running_ctx_t *SIMIX_process_get_running_context(void);
83 void SIMIX_process_exception_terminate(xbt_ex_t * e);
84 void SIMIX_pre_process_change_host(smx_simcall_t, smx_process_t process,
85            smx_host_t dest);
86 void SIMIX_process_change_host(smx_process_t process,
87              smx_host_t dest);
88 void SIMIX_pre_process_suspend(smx_simcall_t simcall, smx_process_t process);
89 smx_action_t SIMIX_process_suspend(smx_process_t process, smx_process_t issuer);
90 void SIMIX_process_resume(smx_process_t process, smx_process_t issuer);
91 void* SIMIX_process_get_data(smx_process_t process);
92 void SIMIX_process_set_data(smx_process_t process, void *data);
93 smx_host_t SIMIX_process_get_host(smx_process_t process);
94 const char* SIMIX_process_get_name(smx_process_t process);
95 smx_process_t SIMIX_process_get_by_name(const char* name);
96 int SIMIX_process_is_suspended(smx_process_t process);
97 xbt_dict_t SIMIX_process_get_properties(smx_process_t process);
98 void SIMIX_pre_process_sleep(smx_simcall_t simcall, double duration);
99 smx_action_t SIMIX_process_sleep(smx_process_t process, double duration);
100 void SIMIX_post_process_sleep(smx_action_t action);
101
102 void SIMIX_process_sleep_suspend(smx_action_t action);
103 void SIMIX_process_sleep_resume(smx_action_t action);
104 void SIMIX_process_sleep_destroy(smx_action_t action);
105 void SIMIX_process_auto_restart_set(smx_process_t process, int auto_restart);
106 smx_process_t SIMIX_process_restart(smx_process_t process, smx_process_t issuer);
107
108 // pre prototypes
109 void SIMIX_pre_process_create(smx_simcall_t simcall, smx_process_t *process,
110                               const char *name, xbt_main_func_t code, void *data,
111                               const char *hostname, double kill_time, int argc,
112                               char **argv, xbt_dict_t properties, int auto_restart);
113 void SIMIX_pre_process_kill(smx_simcall_t simcall, smx_process_t process);
114 void SIMIX_pre_process_killall(smx_simcall_t simcall);
115 void SIMIX_pre_process_cleanup(smx_simcall_t simcall, smx_process_t process);
116 void SIMIX_pre_process_resume(smx_simcall_t simcall, smx_process_t process);
117 int SIMIX_pre_process_count(smx_simcall_t simcall);
118 void* SIMIX_pre_process_self_get_data(smx_simcall_t simcall, smx_process_t process);
119 void* SIMIX_pre_process_get_data(smx_simcall_t simcall, smx_process_t process);
120 void SIMIX_pre_process_set_data(smx_simcall_t simcall, smx_process_t process,
121                                 void *data);
122 smx_host_t SIMIX_pre_process_get_host(smx_simcall_t simcall, smx_process_t process);
123 const char* SIMIX_pre_process_get_name(smx_simcall_t simcall, smx_process_t process);
124 int SIMIX_pre_process_is_suspended(smx_simcall_t simcall, smx_process_t process);
125 xbt_dict_t SIMIX_pre_process_get_properties(smx_simcall_t simcall, smx_process_t process);
126 void SIMIX_pre_process_on_exit(smx_simcall_t simcall, smx_process_t process,
127                                int_f_pvoid_t fun, void *data);
128 void SIMIX_pre_process_auto_restart_set(smx_simcall_t simcall, smx_process_t process,
129                                         int auto_restart);
130 smx_process_t SIMIX_pre_process_restart(smx_simcall_t simcall, smx_process_t process);
131 #endif