]> sourceware.org Git - newlib-cygwin.git/commitdiff
* wincap.cc: New file.
authorCorinna Vinschen <corinna@vinschen.de>
Thu, 12 Jan 2006 16:59:15 +0000 (16:59 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Thu, 12 Jan 2006 16:59:15 +0000 (16:59 +0000)
* wincap.h: New file.
* Makefile.in: Accomodate having our own wincap implementation now.

winsup/cygserver/ChangeLog
winsup/cygserver/Makefile.in
winsup/cygserver/wincap.cc [new file with mode: 0644]
winsup/cygserver/wincap.h [new file with mode: 0644]

index 1a13f20e032518ee78d25d318862c46b5c5980ae..30bd8d12c6406848551c4599ebf7d04a29b61813 100644 (file)
@@ -1,3 +1,9 @@
+2006-01-12  Corinna Vinschen  <corinna@vinschen.de>
+
+       * wincap.cc: New file.
+       * wincap.h: New file.
+       * Makefile.in: Accomodate having our own wincap implementation now.
+
 2006-01-09  Corinna Vinschen  <corinna@vinschen.de>
 
        Check FreeBSD upstream changes and apply important patches.
index 1b76a76434f2365a4eb839a2b272b44a6ba08eb8..d3426f6b63bc15d2d8eada6dda35ad4e6a641d37 100644 (file)
@@ -1,5 +1,5 @@
 # Makefile for Cygwin server
-# Copyright 2003 Red Hat, Inc.
+# Copyright 2003, 2006 Red Hat, Inc.
 
 # This file is part of Cygwin.
 
@@ -40,11 +40,10 @@ override CXXFLAGS+=-MMD -DHAVE_DECL_GETOPT=0 -D__OUTSIDE_CYGWIN__ -DSYSCONFDIR="
 OBJS:= cygserver.o client.o process.o msg.o sem.o shm.o threaded_queue.o \
        transport.o transport_pipes.o transport_sockets.o \
        bsd_helper.o bsd_log.o bsd_mutex.o \
-       sysv_msg.o sysv_sem.o sysv_shm.o
+       sysv_msg.o sysv_sem.o sysv_shm.o wincap.o
 LIBOBJS:=${patsubst %.o,lib%.o,$(OBJS)}
 
-CYGWIN_OBJS:=$(cygwin_build)/smallprint.o $(cygwin_build)/version.o \
-       $(cygwin_build)/wincap.o
+CYGWIN_OBJS:=$(cygwin_build)/smallprint.o $(cygwin_build)/version.o
 
 CYGWIN_LIB:=$(cygwin_build)/libcygwin.a
 
diff --git a/winsup/cygserver/wincap.cc b/winsup/cygserver/wincap.cc
new file mode 100644 (file)
index 0000000..875415d
--- /dev/null
@@ -0,0 +1,23 @@
+/* wincap.cc -- figure out on which OS we're running.
+               Lightweight version for Cygserver
+
+   Copyright 2006 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. */
+
+#include "woutsup.h"
+
+wincapc wincap;
+
+void
+wincapc::init ()
+{
+  memset (&version, 0, sizeof version);
+  /* Request simple version info. */
+  version.dwOSVersionInfoSize = sizeof (OSVERSIONINFO);
+  GetVersionEx (&version);
+}
diff --git a/winsup/cygserver/wincap.h b/winsup/cygserver/wincap.h
new file mode 100644 (file)
index 0000000..af09cad
--- /dev/null
@@ -0,0 +1,30 @@
+/* wincap.h: Header for OS capability class.
+            Lightweight version for Cygserver.
+
+   Copyright 2006 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. */
+
+#ifndef _CYGSERVER_WINCAP_H
+#define _CYGSERVER_WINCAP_H
+
+class wincapc
+{
+  OSVERSIONINFO version;
+
+public:
+  void init ();
+
+  bool is_winnt () const
+    { return version.dwPlatformId == VER_PLATFORM_WIN32_NT; }
+  bool has_security () const
+    { return version.dwPlatformId == VER_PLATFORM_WIN32_NT; }
+};
+
+extern wincapc wincap;
+
+#endif /* _CYGSERVER_WINCAP_H */
This page took 0.032534 seconds and 5 git commands to generate.