Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a72ce56ececf9b820a931a092b1d9e19c40b2ab5
[simgrid.git] / src / surf / surf_timer_private.h
1 /*      $Id$     */
2
3 /* Copyright (c) 2005 Arnaud Legrand. All rights reserved.                  */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef _SURF_TIMER_PRIVATE_H
9 #define _SURF_TIMER_PRIVATE_H
10
11 #include "surf_private.h"
12 #include "xbt/dict.h"
13
14 /* typedef struct surf_action_timer_Cas01 { */
15 /*   s_surf_action_t generic_action; */
16 /*   lmm_variable_t variable; */
17 /* } s_surf_action_timer_t, *surf_action_timer_t; */
18
19 typedef struct command {
20   surf_resource_t resource;     /* Any such object, added in a trace
21                                    should start by this field!!! */
22   void *function;
23   void *args;
24   char *name;
25   s_xbt_swag_hookup_t command_set_hookup;
26 } s_command_t, *command_t;
27
28 extern xbt_dict_t command_set;
29
30 #endif                          /* _SURF_TIMER_PRIVATE_H */