Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid into no_simix_global
[simgrid.git] / teshsuite / smpi / timers / timers.c
index ad0cab5..3ec1c5d 100644 (file)
@@ -1,3 +1,8 @@
+/* Copyright (c) 2016-2021. 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. */
+
 #include "mpi.h"
 #include <stdio.h>
 #include <stdlib.h>
@@ -49,7 +54,7 @@ int main(int argc, char* argv[])
   clock_gettime(CLOCK_REALTIME, &tp1);
   clock_gettime(CLOCK_REALTIME, &tp2);
   if (tp1.tv_sec != tp2.tv_sec || tp1.tv_nsec != tp2.tv_nsec)
-    printf("Error, two consecutive calls to gettimeofday did not return same time (with running power to 0)\n");
+    printf("Error, two consecutive calls to clock_gettime did not return same time (with running power to 0)\n");
 
   // nanosleep for 100ns
   clock_gettime(CLOCK_REALTIME, &tp1);