Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Windows version of rand_r() and drand48()functions.
[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_model_t model;   /* Any such object, added in a trace
21                                    should start by this field!!! */
22   void *function;
23   void *args;
24   s_xbt_swag_hookup_t command_set_hookup;
25 } s_command_t, *command_t;
26
27 extern xbt_dict_t command_set;
28
29 #endif                          /* _SURF_TIMER_PRIVATE_H */