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:
authorcvs2svn <>2001-09-12 00:01:05 +0400
committercvs2svn <>2001-09-12 00:01:05 +0400
commite9a835362459c5ed9d2349816a6ee9e1bd0f091b (patch)
tree8e315d9da39832c855b596ad399f6314c750a504
parent4237bcae4a699edf96d1d3a7a570a0c87d7d1765 (diff)
This commit was manufactured by cvs2svn to create branch 'cygwin-1-3-5'.cygwin-1-3-5
Sprout from cygwin-1-3-3 2001-09-11 20:01:03 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch 'cygwin-1-3-3'.' Delete: winsup/cygwin/host_dependent.h
-rw-r--r--winsup/cygwin/host_dependent.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/winsup/cygwin/host_dependent.h b/winsup/cygwin/host_dependent.h
deleted file mode 100644
index 94e1546ca..000000000
--- a/winsup/cygwin/host_dependent.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* host_dependent.h: host dependent Cygwin header file.
-
- Copyright 2000 Red Hat, Inc.
-
-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. */
-
-/* Portions of the cygwin DLL require special constants whose values
- are dependent on the host system. Rather than dynamically
- determine those values whenever they are required, initialize these
- values once at process start-up. */
-
-class host_dependent_constants
-{
- public:
- void init (void);
-
- /* Used by fhandler_disk_file::lock which needs a platform-specific
- upper word value for locking entire files. */
- DWORD win32_upper;
-
- /* fhandler_base::open requires host dependent file sharing
- attributes. */
- int shared;
-};
-
-extern host_dependent_constants host_dependent;