Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix make distcheck
[simgrid.git] / tools / cmake / test_prog / prog_sem_open.c
diff --git a/tools/cmake/test_prog/prog_sem_open.c b/tools/cmake/test_prog/prog_sem_open.c
deleted file mode 100644 (file)
index 59ad72b..0000000
+++ /dev/null
@@ -1,30 +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 <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <semaphore.h>
-#include <stdio.h>
-
-#ifndef SEM_FAILED
-#define SEM_FAILED (-1)
-#endif
-
-int main(void) {
-#ifdef WIN32
-  int s;
-#else
-  sem_t * s;
-#endif
-   s = sem_open("/0", O_CREAT, 0644, 10);
-   if (s == SEM_FAILED){
-//     printf("sem_open failed\n");
-     return 1;
-   }
-//   printf("sem_open succeeded\n");
-   return 0;
-}