X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a201b7ceece70d2bc461ac48c8b746a36d07243..8465282253954c58d16cb5dae9a5d064eada3329:/src/xbt/xbt_virtu.c diff --git a/src/xbt/xbt_virtu.c b/src/xbt/xbt_virtu.c index 47a06500e6..a046cfa9a3 100644 --- a/src/xbt/xbt_virtu.c +++ b/src/xbt/xbt_virtu.c @@ -1,6 +1,7 @@ /* virtu - virtualization layer for XBT to choose between GRAS and MSG implementation */ -/* Copyright (c) 2007 Martin Quinson. All rights reserved. */ +/* Copyright (c) 2007-2010, 2012-2014. The SimGrid Team. + * 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. */ @@ -8,6 +9,7 @@ #include "xbt/misc.h" #include "xbt/virtu.h" #include "xbt/function_types.h" +#include "simgrid/simix.h" static int xbt_fake_pid(void) { @@ -15,3 +17,25 @@ static int xbt_fake_pid(void) } int_f_void_t xbt_getpid = xbt_fake_pid; + +/* + * Time elapsed since the beginning of the simulation. + */ +double xbt_time() +{ + /* FIXME: check if we should use the request mechanism or not */ + return SIMIX_get_clock(); +} + +/* + * Freeze the process for the specified amount of time + */ +void xbt_sleep(double sec) +{ + simcall_process_sleep(sec); +} + +const char *xbt_procname(void) +{ + return SIMIX_process_self_get_name(); +}