Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill obsolete config test programs.
[simgrid.git] / tools / cmake / test_prog / prog_sem_timedwait.c
diff --git a/tools/cmake/test_prog/prog_sem_timedwait.c b/tools/cmake/test_prog/prog_sem_timedwait.c
deleted file mode 100644 (file)
index 93c6840..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Copyright (c) 2010-2018. 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 <semaphore.h>
-
-int main()
-{
-  sem_t *s;
-  const struct timespec *t;
-  sem_timedwait(s, t);
-}