Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added round trip time contraint to the SDP program, this parameter
[simgrid.git] / src / gras / Virtu / sg_time.c
index 1f50a85..eee9cd5 100644 (file)
@@ -2,18 +2,23 @@
 
 /* time - time related syscal wrappers                                      */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2003,2004 da GRAS posse.                                   */
+/* Copyright (c) 2003, 2004 Martin Quinson. 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. */
 
-#include "Virtu/virtu_sg.h"
+#include "gras/Virtu/virtu_sg.h"
 
-double gras_time() {
-  return MSG_getClock();
+/* 
+ * Time elapsed since the begining of the simulation.
+ */
+double gras_os_time() {
+  return MSG_get_clock();
 }
-void gras_sleep(unsigned long sec,unsigned long usec) {
-  MSG_process_sleep((double)sec + ((double)usec)/1000000);
+
+/*
+ * Freeze the process for the specified amount of time
+ */
+void gras_os_sleep(double sec) {
+  MSG_process_sleep(sec);
 }