Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I think I just killed a simcall
[simgrid.git] / src / include / instr / instr_interface.h
1 /* Copyright (c) 2012-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_INSTR_INTERFACE_H
7 #define SIMGRID_INSTR_INTERFACE_H
8
9 #include "xbt.h"
10
11 SG_BEGIN_DECL()
12
13 XBT_PUBLIC(int) TRACE_start ();
14 XBT_PUBLIC(int) TRACE_end ();
15 XBT_PUBLIC(void) TRACE_global_init(int *argc, char **argv);
16 XBT_PUBLIC(void) TRACE_help(int detailed);
17 XBT_PUBLIC(void) TRACE_surf_resource_utilization_alloc();
18 XBT_PUBLIC(void) TRACE_surf_resource_utilization_release();
19 XBT_PUBLIC(void) TRACE_add_start_function(void (*func)(void));
20 XBT_PUBLIC(void) TRACE_add_end_function(void (*func)(void));
21
22 SG_END_DECL()
23
24 #endif