X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/005cf0f71b3817a9e93de0b0c3bd92f216ef5c7f..8f53b49a3b699b15a97868ce7a137e9e43de444c:/include/simix/context.h diff --git a/include/simix/context.h b/include/simix/context.h index 1a10dc34cb..7775c66ac8 100644 --- a/include/simix/context.h +++ b/include/simix/context.h @@ -6,12 +6,11 @@ /* 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 _XBT_CONTEXT_H -#define _XBT_CONTEXT_H +#ifndef _SIMIX_CONTEXT_H +#define _SIMIX_CONTEXT_H #include "xbt/swag.h" #include "simix/datatypes.h" -#include "simix/context.h" SG_BEGIN_DECL() /******************************** Context *************************************/ @@ -33,9 +32,10 @@ typedef void (*smx_pfn_context_free_t) (smx_context_t); typedef void (*smx_pfn_context_start_t) (smx_context_t); typedef void (*smx_pfn_context_stop_t) (smx_context_t); typedef void (*smx_pfn_context_suspend_t) (smx_context_t context); -typedef void (*smx_pfn_context_runall_t) (xbt_swag_t processes); +typedef void (*smx_pfn_context_runall_t) (xbt_dynar_t processes); typedef smx_context_t (*smx_pfn_context_self_t) (void); typedef void* (*smx_pfn_context_get_data_t) (smx_context_t context); +typedef int (*smx_pfn_context_get_thread_id) (void); /* interface of the context factories */ typedef struct s_smx_context_factory { @@ -48,16 +48,17 @@ typedef struct s_smx_context_factory { smx_pfn_context_runall_t runall; smx_pfn_context_self_t self; smx_pfn_context_get_data_t get_data; + smx_pfn_context_get_thread_id get_thread_id; } s_smx_context_factory_t; -/*Hack: let msg load directly the right factory */ -typedef void (*SIMIX_ctx_factory_initializer_t)(smx_context_factory_t*); -extern SIMIX_ctx_factory_initializer_t factory_initializer_to_use; - -extern int _surf_parallel_contexts; -smx_context_t smx_current_context; +/* Hack: let msg load directly the right factory */ +typedef void (*smx_ctx_factory_initializer_t)(smx_context_factory_t*); +extern smx_ctx_factory_initializer_t smx_factory_initializer_to_use; +extern char* smx_context_factory_name; +extern int smx_context_stack_size; +extern smx_context_t smx_current_context; /* *********************** */ /* Context type definition */ @@ -72,6 +73,7 @@ typedef struct s_smx_context { int argc; char **argv; void_pfn_smxprocess_t cleanup_func; + int iwannadie:1; void *data; /* Here SIMIX stores the smx_process_t containing the context */ } s_smx_ctx_base_t; @@ -89,6 +91,12 @@ void smx_ctx_base_free(smx_context_t context); void smx_ctx_base_stop(smx_context_t context); smx_context_t smx_ctx_base_self(void); void *smx_ctx_base_get_data(smx_context_t context); +int smx_ctx_base_get_thread_id(void); + +/* parallelism */ +void SIMIX_context_set_nthreads(int nb_threads); +int SIMIX_context_get_nthreads(void); +int SIMIX_context_is_parallel(void); SG_END_DECL()