X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/749ea30edef7311180cd8449a1ff449ea5d47b93..b59658a063489a0f89b971818530597ce329a3ce:/src/surf/surf_timer_private.h diff --git a/src/surf/surf_timer_private.h b/src/surf/surf_timer_private.h new file mode 100644 index 0000000000..7a4ae382b5 --- /dev/null +++ b/src/surf/surf_timer_private.h @@ -0,0 +1,29 @@ +/* $Id$ */ + +/* Copyright (c) 2005 Arnaud Legrand. 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 _SURF_TIMER_PRIVATE_H +#define _SURF_TIMER_PRIVATE_H + +#include "surf_private.h" +#include "xbt/dict.h" + +/* typedef struct surf_action_timer_Cas01 { */ +/* s_surf_action_t generic_action; */ +/* lmm_variable_t variable; */ +/* } s_surf_action_timer_t, *surf_action_timer_t; */ + +typedef struct command { + surf_resource_t resource; /* Any such object, added in a trace + should start by this field!!! */ + void *fun; + void *args; + char *name; +} s_command_t, *command_t; + +extern xbt_dict_t command_set; + +#endif /* _SURF_TIMER_PRIVATE_H */