Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
tesh version 2
[simgrid.git] / tools / tesh2 / include / timer.h
1 #ifndef __TIMER_H
2 #define __TIMER_H
3
4 #include <com.h>
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 ttimer_t
11 timer_new(command_t command);
12
13 void
14 timer_free(ttimer_t* timer);
15
16 void
17 timer_time(ttimer_t timer);
18
19 void
20 timer_wait(ttimer_t timer);
21
22 #ifdef __cplusplus
23 }
24 #endif
25
26
27 #endif /* !__TIMER_H */