Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Ouups, forgot those two files, bummer
[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 command {
15   s_surf_resource_t generic_resource; /* Must remain first, since we add this to a trace */
16   void *function;
17   void *args;
18   s_xbt_swag_hookup_t command_set_hookup;
19 } s_command_t, *command_t;
20
21 extern xbt_dict_t command_set;
22
23 #endif /* _SURF_TIMER_PRIVATE_H */