X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b51da37243dc16575499f4cb7729fe8bdd7fa514..d1ce25d36729721b7d7eed0fa4425e401db8a092:/src/simix/popping_private.h diff --git a/src/simix/popping_private.h b/src/simix/popping_private.h index d532dbd5b8..389f89b407 100644 --- a/src/simix/popping_private.h +++ b/src/simix/popping_private.h @@ -1,15 +1,19 @@ -/* Copyright (c) 2007-2010, 2012-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2017. The SimGrid Team. 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 _POPPING_PRIVATE_H -#define _POPPING_PRIVATE_H +#ifndef SG_POPPING_PRIVATE_H +#define SG_POPPING_PRIVATE_H #include #include +#include +#include + +#include + SG_BEGIN_DECL() /********************************* Simcalls *********************************/ @@ -17,8 +21,8 @@ XBT_PUBLIC_DATA(const char*) simcall_names[]; /* Name of each simcall */ #include "popping_enum.h" /* Definition of e_smx_simcall_t, with one value per simcall */ -typedef int (*simix_match_func_t)(void *, void *, smx_synchro_t); -typedef void (*simix_copy_data_func_t)(smx_synchro_t, void*, size_t); +typedef int (*simix_match_func_t)(void *, void *, smx_activity_t); +typedef void (*simix_copy_data_func_t)(smx_activity_t, void*, size_t); typedef void (*simix_clean_func_t)(void *); typedef void (*FPtr)(void); // Hide the ugliness @@ -44,7 +48,7 @@ union u_smx_scalar { */ struct s_smx_simcall { e_smx_simcall_t call; - smx_process_t issuer; + smx_actor_t issuer; smx_timer_t timer; int mc_value; union u_smx_scalar args[11]; @@ -58,7 +62,7 @@ struct s_smx_simcall { XBT_PRIVATE void SIMIX_simcall_answer(smx_simcall_t simcall); XBT_PRIVATE void SIMIX_simcall_handle(smx_simcall_t simcall, int value); -XBT_PRIVATE void SIMIX_simcall_exit(smx_synchro_t synchro); +XBT_PRIVATE void SIMIX_simcall_exit(smx_activity_t synchro); XBT_PRIVATE const char *SIMIX_simcall_name(e_smx_simcall_t kind); XBT_PRIVATE void SIMIX_run_kernel(std::function const* code); XBT_PRIVATE void SIMIX_run_blocking(std::function const* code); @@ -119,6 +123,19 @@ T* unmarshal(type, u_smx_scalar const& simcall) return static_cast(simcall.dp); } +template +inline void marshal(type>, u_smx_scalar& simcall, boost::intrusive_ptr value) +{ + intrusive_ptr_add_ref(&*value); + simcall.dp = static_cast(&*value); +} +template inline boost::intrusive_ptr unmarshal(type>, u_smx_scalar const& simcall) +{ + boost::intrusive_ptr res = boost::intrusive_ptr(static_cast(simcall.dp), false); + intrusive_ptr_release(&*res); + return res; +} + template inline void marshal(type, u_smx_scalar& simcall, R(*value)(T...)) {