Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move the cmake files in tools/cmake
[simgrid.git] / buildtools / Cmake / test_prog / prog_mutex_timedlock.c
diff --git a/buildtools/Cmake/test_prog/prog_mutex_timedlock.c b/buildtools/Cmake/test_prog/prog_mutex_timedlock.c
deleted file mode 100644 (file)
index c3eb72d..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* Copyright (c) 2010. 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 <pthread.h>
-
-void main (void)
-{
-       pthread_mutex_t s;
-       const struct timespec t;
-       sem_timedlock(&s, &t);
-}