X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/24b8008bb424160e633b1374f54dcd89bdcb9749..64d2562eea7ac471385b53b55a338ab3a15fd746:/src/include/surf/trace_mgr.h diff --git a/src/include/surf/trace_mgr.h b/src/include/surf/trace_mgr.h index 87999db8da..a6420463d7 100644 --- a/src/include/surf/trace_mgr.h +++ b/src/include/surf/trace_mgr.h @@ -1,7 +1,9 @@ -/* Authors: Arnaud Legrand */ +/* $Id$ */ + +/* Copyright (c) 2004 Arnaud Legrand. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef _SURF_TMGR_H #define _SURF_TMGR_H @@ -15,23 +17,25 @@ typedef struct tmgr_trace *tmgr_trace_t; typedef struct tmgr_trace_event *tmgr_trace_event_t; /* Creation functions */ -tmgr_history_t tmgr_history_new(void); -void tmgr_history_free(tmgr_history_t history); +XBT_PUBLIC(tmgr_history_t) tmgr_history_new(void); +XBT_PUBLIC(void) tmgr_history_free(tmgr_history_t history); -tmgr_trace_t tmgr_trace_new(const char *filename); -void tmgr_trace_free(tmgr_trace_t trace); +XBT_PUBLIC(tmgr_trace_t) tmgr_trace_new(const char *filename); +XBT_PUBLIC(tmgr_trace_t) tmgr_empty_trace_new(void); +XBT_PUBLIC(void) tmgr_trace_free(tmgr_trace_t trace); -tmgr_trace_event_t tmgr_history_add_trace(tmgr_history_t history, tmgr_trace_t trace, - xbt_heap_float_t start_time, int offset, +XBT_PUBLIC(tmgr_trace_event_t) tmgr_history_add_trace(tmgr_history_t history, + tmgr_trace_t trace, + double start_time, int offset, void *resource); /* Access functions */ -xbt_heap_float_t tmgr_history_next_date(tmgr_history_t history); -tmgr_trace_event_t tmgr_history_get_next_event_leq(tmgr_history_t history, - xbt_heap_float_t date, - xbt_maxmin_float_t * value, - void **resource); +XBT_PUBLIC(double) tmgr_history_next_date(tmgr_history_t history); +XBT_PUBLIC(tmgr_trace_event_t) tmgr_history_get_next_event_leq(tmgr_history_t history, + double date, + double *value, + void **resource); -void tmgr_finalize(void); +XBT_PUBLIC(void) tmgr_finalize(void); #endif /* _SURF_TMGR_H */