Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/sem.cc')
-rw-r--r--winsup/cygwin/sem.cc41
1 files changed, 0 insertions, 41 deletions
diff --git a/winsup/cygwin/sem.cc b/winsup/cygwin/sem.cc
deleted file mode 100644
index 63aba8e80..000000000
--- a/winsup/cygwin/sem.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-/* sem.cc: Single unix specification IPC interface for Cygwin.
-
- Copyright 2002 Red Hat, Inc.
-
- Written by Conrad Scott <conrad.scott@dsl.pipex.com>.
-
-This file is part of Cygwin.
-
-This software is a copyrighted work licensed under the terms of the
-Cygwin license. Please consult the file "CYGWIN_LICENSE" for
-details. */
-
-#include "winsup.h"
-
-#include <sys/types.h>
-#include <cygwin/sem.h>
-
-#include <errno.h>
-
-#include "cygerrno.h"
-
-extern "C" int
-semctl (int semid, int semnum, int cmd, ...)
-{
- set_errno (ENOSYS);
- return -1;
-}
-
-extern "C" int
-semget (key_t key, int nsems, int semflg)
-{
- set_errno (ENOSYS);
- return -1;
-}
-
-extern "C" int
-semop (int semid, struct sembuf *sops, size_t nsops)
-{
- set_errno (ENOSYS);
- return -1;
-}