Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
First step into moving the context subsystem into simix. Still segfaults because...
[simgrid.git] / src / simix / private.h
index bb65a42..202f3f4 100644 (file)
-/*     $Id$     */
-
-/* Copyright (c) 2007 Arnaud Legrand, Bruno Donnassolo.
-   All rights reserved.                                          */
-
-/* This program is free software; you can redistribute it and/or modify it
- * under the terms of the license (GNU LGPL) which comes with this package. */
-
-#ifndef SIMIX_PRIVATE_H
-#define SIMIX_PRIVATE_H
-
-#include <stdio.h>
-#include "simix/simix.h"
-#include "surf/surf.h"
-#include "xbt/fifo.h"
-#include "xbt/swag.h"
-#include "xbt/dict.h"
-#include "simix/context.h"
-#include "xbt/config.h"
-#include "xbt/function_types.h"
-
-/******************************* Datatypes **********************************/
-
-
-/********************************** Host ************************************/
-
-/** @brief Host datatype 
-    @ingroup m_datatypes_management_details */
-typedef struct s_smx_host {
-  char *name;              /**< @brief host name if any */
-  void *host;              /* SURF modeling */
-  xbt_swag_t process_list;
-  void *data;              /**< @brief user data */
-} s_smx_host_t;
-
-/********************************* Simix Global ******************************/
-
-typedef struct SIMIX_Global {
-  xbt_dict_t host;
-  xbt_swag_t process_to_run;
-  xbt_swag_t process_list;
-
-  smx_process_t current_process;
-  xbt_dict_t registered_functions;
-  smx_creation_func_t create_process_function;
-  void_f_pvoid_t kill_process_function;
-  void_f_pvoid_t cleanup_process_function;
-} s_SIMIX_Global_t, *SIMIX_Global_t;
-
-extern SIMIX_Global_t simix_global;
-
-/******************************* Process *************************************/
-
-/** @brief Process datatype 
-    @ingroup m_datatypes_management_details @{ */
-     typedef struct s_smx_process {
-       s_xbt_swag_hookup_t process_hookup;
-       s_xbt_swag_hookup_t synchro_hookup;
-       s_xbt_swag_hookup_t host_proc_hookup;
-
-       char *name;              /**< @brief process name if any */
-       smx_host_t smx_host;     /* the host on which the process is running */
-       xbt_context_t context;   /* the context that executes the scheduler function */
-       int argc;                /* arguments number if any */
-       char **argv;             /* arguments table if any */
-       int blocked : 1;
-       int suspended : 1;
-       int iwannadie : 1;
-       smx_mutex_t mutex;       /* mutex on which the process is blocked  */
-       smx_cond_t cond;         /* cond on which the process is blocked  */
-       xbt_dict_t properties;
-       void *data;              /* kept for compatibility, it should be replaced with moddata */
-
-     } s_smx_process_t;
-/** @} */
-
-typedef struct s_smx_process_arg {
-  const char *name;
-  xbt_main_func_t code;
-  void *data;
-  char *hostname;
-  int argc;
-  char **argv;
-  double kill_time;
-  xbt_dict_t properties;
-} s_smx_process_arg_t, *smx_process_arg_t;
-
-/********************************* Mutex and Conditional ****************************/
-
-typedef struct s_smx_mutex {
-
-  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */
-  xbt_swag_t sleeping;          /* list of sleeping process */
-  int refcount;
-  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */
-
-} s_smx_mutex_t;
-
-typedef struct s_smx_cond {
-
-  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */
-  xbt_swag_t sleeping;          /* list of sleeping process */
-  smx_mutex_t mutex;
-  xbt_fifo_t actions;           /* list of actions */
-  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */
-
-} s_smx_cond_t;
-
-/********************************* Action **************************************/
-
-/** @brief Action datatype 
-    @ingroup m_datatypes_management_details */
-typedef struct s_smx_action {
-  char *name;              /**< @brief action name if any */
-  xbt_fifo_t cond_list;    /*< conditional variables that must be signaled when the action finish. */
-  void *data;              /**< @brief user data */
-  int refcount;            /**< @brief reference counter */
-  surf_action_t surf_action;    /* SURF modeling of computation  */
-  smx_host_t source;
-} s_smx_action_t;
-
-/******************************* Other **********************************/
-
-
-#define SIMIX_CHECK_HOST()  xbt_assert0(surf_workstation_model->extension.workstation. \
-                                 get_state(SIMIX_host_self()->host)==SURF_RESOURCE_ON,\
-                                  "Host failed, you cannot call this function.")
-
-smx_host_t __SIMIX_host_create(const char *name, void *workstation,
-                               void *data);
-void __SIMIX_host_destroy(void *host);
-
-void __SIMIX_cond_wait(smx_cond_t cond);
-
-void __SIMIX_cond_display_actions(smx_cond_t cond);
-void __SIMIX_action_display_conditions(smx_action_t action);
-
-#endif
+/*     $Id$     */\r
+\r
+/* Copyright (c) 2007 Arnaud Legrand, Bruno Donnassolo.\r
+   All rights reserved.                                          */\r
+\r
+/* This program is free software; you can redistribute it and/or modify it\r
+ * under the terms of the license (GNU LGPL) which comes with this package. */\r
+\r
+#ifndef SIMIX_PRIVATE_H\r
+#define SIMIX_PRIVATE_H\r
+\r
+#include <stdio.h>\r
+#include "simix/simix.h"\r
+#include "surf/surf.h"\r
+#include "xbt/fifo.h"\r
+#include "xbt/swag.h"\r
+#include "xbt/dict.h"\r
+#include "xbt/config.h"\r
+#include "xbt/function_types.h"\r
+\r
+/******************************** Datatypes ***********************************/\r
+\r
+\r
+/*********************************** Host *************************************/\r
+\r
+/** @brief Host datatype \r
+    @ingroup m_datatypes_management_details */\r
+typedef struct s_smx_host {\r
+  char *name;              /**< @brief host name if any */\r
+  void *host;              /* SURF modeling */\r
+  xbt_swag_t process_list;\r
+  void *data;              /**< @brief user data */\r
+} s_smx_host_t;\r
+\r
+/********************************** Simix Global ******************************/\r
+\r
+typedef struct s_smx_context_factory *smx_context_factory_t;\r
+\r
+typedef struct SIMIX_Global {\r
+  smx_context_factory_t context_factory;\r
+  xbt_dict_t host;\r
+  xbt_swag_t process_to_run;\r
+  xbt_swag_t process_list;\r
+  xbt_swag_t process_to_destroy;\r
+  smx_process_t current_process;\r
+  smx_process_t maestro_process;\r
+  xbt_dict_t registered_functions;\r
+  smx_creation_func_t create_process_function;\r
+  void_f_pvoid_t kill_process_function;\r
+  void_f_pvoid_t cleanup_process_function;\r
+} s_SIMIX_Global_t, *SIMIX_Global_t;\r
+\r
+extern SIMIX_Global_t simix_global;\r
+\r
+/******************************** Process *************************************/\r
+\r
+typedef struct s_xbt_context *xbt_context_t;\r
+\r
+/** @brief Process datatype \r
+    @ingroup m_datatypes_management_details @{ */\r
+     typedef struct s_smx_process {\r
+       s_xbt_swag_hookup_t process_hookup;\r
+       s_xbt_swag_hookup_t synchro_hookup;\r
+       s_xbt_swag_hookup_t host_proc_hookup;\r
+       s_xbt_swag_hookup_t destroy_hookup;\r
+\r
+       char *name;              /**< @brief process name if any */\r
+       smx_host_t smx_host;     /* the host on which the process is running */\r
+       xbt_context_t context;   /* the context that executes the scheduler function */\r
+       int argc;                /* arguments number if any */\r
+       char **argv;             /* arguments table if any */\r
+       int blocked : 1;\r
+       int suspended : 1;\r
+       int iwannadie : 1;\r
+       smx_mutex_t mutex;       /* mutex on which the process is blocked  */\r
+       smx_cond_t cond;         /* cond on which the process is blocked  */\r
+       xbt_dict_t properties;\r
+       void *data;              /* kept for compatibility, it should be replaced with moddata */\r
+       void_f_pvoid_t cleanup_func;\r
+       void *cleanup_arg;\r
+\r
+     } s_smx_process_t;\r
+/** @} */\r
+\r
+typedef struct s_smx_process_arg {\r
+  const char *name;\r
+  xbt_main_func_t code;\r
+  void *data;\r
+  char *hostname;\r
+  int argc;\r
+  char **argv;\r
+  double kill_time;\r
+  xbt_dict_t properties;\r
+} s_smx_process_arg_t, *smx_process_arg_t;\r
+\r
+/*************************** Mutex and Conditional ****************************/\r
+\r
+typedef struct s_smx_mutex {\r
+\r
+  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */\r
+  xbt_swag_t sleeping;          /* list of sleeping process */\r
+  int refcount;\r
+  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_mutex */\r
+\r
+} s_smx_mutex_t;\r
+\r
+typedef struct s_smx_cond {\r
+\r
+  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */\r
+  xbt_swag_t sleeping;          /* list of sleeping process */\r
+  smx_mutex_t mutex;\r
+  xbt_fifo_t actions;           /* list of actions */\r
+  /* KEEP IT IN SYNC WITH src/xbt_sg_thread.c::struct s_xbt_cond */\r
+\r
+} s_smx_cond_t;\r
+\r
+/********************************* Action *************************************/\r
+\r
+/** @brief Action datatype \r
+    @ingroup m_datatypes_management_details */\r
+typedef struct s_smx_action {\r
+  char *name;              /**< @brief action name if any */\r
+  xbt_fifo_t cond_list;    /*< conditional variables that must be signaled when the action finish. */\r
+  void *data;              /**< @brief user data */\r
+  int refcount;            /**< @brief reference counter */\r
+  surf_action_t surf_action;    /* SURF modeling of computation  */\r
+  smx_host_t source;\r
+} s_smx_action_t;\r
+\r
+/******************************* Other **********************************/\r
+\r
+\r
+#define SIMIX_CHECK_HOST()  xbt_assert0(surf_workstation_model->extension.workstation. \\r
+                                 get_state(SIMIX_host_self()->host)==SURF_RESOURCE_ON,\\r
+                                  "Host failed, you cannot call this function.")\r
+\r
+smx_host_t __SIMIX_host_create(const char *name, void *workstation, void *data);\r
+void __SIMIX_host_destroy(void *host);\r
+void __SIMIX_cond_wait(smx_cond_t cond);\r
+void __SIMIX_cond_display_actions(smx_cond_t cond);\r
+void __SIMIX_action_display_conditions(smx_action_t action);\r
+void __SIMIX_create_maestro_process(void);\r
+\r
+/******************************** Context *************************************/\r
+\r
+int SIMIX_context_create_maestro(smx_process_t *process);\r
+\r
+int SIMIX_context_new(smx_process_t *process, xbt_main_func_t code);\r
+\rvoid SIMIX_context_kill(smx_process_t process);\r
+\rvoid SIMIX_context_start(smx_process_t process);\r
+\rvoid SIMIX_context_yield(void);\r
+\rvoid SIMIX_context_schedule(smx_process_t process);\r
+     \rvoid SIMIX_context_empty_trash(void);\r
+\r
+void SIMIX_context_stop(int exit_code);\r
+     \rvoid SIMIX_context_free(smx_process_t process);\r
+\r
+void SIMIX_context_mod_init(void);\r
+\r
+void SIMIX_context_mod_exit(void);\r
+#endif\r