X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3af36b8af09df7e18d99e63a74052113a1650410..6e9085979401423afcde6d001562b6ffd23021e8:/src/simix/smurf_private.h diff --git a/src/simix/smurf_private.h b/src/simix/smurf_private.h index 7a67a35d69..7a80c3f82c 100644 --- a/src/simix/smurf_private.h +++ b/src/simix/smurf_private.h @@ -24,6 +24,9 @@ typedef enum { REQ_HOST_EXECUTION_GET_REMAINS, REQ_HOST_EXECUTION_GET_STATE, REQ_HOST_EXECUTION_SET_PRIORITY, +#ifdef HAVE_TRACING + REQ_HOST_EXECUTION_SET_CATEGORY, +#endif REQ_HOST_EXECUTION_WAIT, REQ_PROCESS_CREATE, REQ_PROCESS_KILL, @@ -170,6 +173,13 @@ typedef struct s_smx_req { double priority; } host_execution_set_priority; +#ifdef HAVE_TRACING + struct { + smx_action_t execution; + const char *category; + } host_execution_set_category; +#endif + struct { smx_action_t execution; } host_execution_wait;