From e5ba4c060e410f92abe570933fe2bda239f34bd9 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 4 Aug 2001 21:10:52 +0000 Subject: Throughout, change check for running under Windows NT to 'iswinnt'. * dcrt0.cc (set_os_type): Set 'iswinnt' appropriately. * cygheap.cc (init_cheap): Revert to using VirtualAlloc for allocating cygheap. (cygheap_setup_for_child_cleanup): New function. Standard function to call after calling CreateProcess to cleanup cygheap info passed to child. (cygheap_fixup_in_child): Copy cygheap from shared memory into allocated space under Windows 9x or if can't relocate shared space under NT. * cygheap.h: Declare new function. * spawn.cc (spawn_guts): Use cygheap_fixup_in_child. * fork.cc (fork_parent): Ditto. * winsup.h: Declare iswinnt. --- winsup/cygwin/fhandler_mem.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'winsup/cygwin/fhandler_mem.cc') diff --git a/winsup/cygwin/fhandler_mem.cc b/winsup/cygwin/fhandler_mem.cc index 08ea95de6..58aeeb3db 100644 --- a/winsup/cygwin/fhandler_mem.cc +++ b/winsup/cygwin/fhandler_mem.cc @@ -28,7 +28,7 @@ fhandler_dev_mem::fhandler_dev_mem (const char *name, int nunit) unit (nunit) { /* Reading physical memory only supported on NT/W2K. */ - if (os_being_run != winNT) + if (!iswinnt) { mem_size = 0; return; @@ -74,7 +74,7 @@ fhandler_dev_mem::~fhandler_dev_mem (void) int fhandler_dev_mem::open (const char *, int flags, mode_t) { - if (os_being_run != winNT) + if (!iswinnt) { set_errno (ENOENT); debug_printf ("%s is accessible under NT/W2K only", @@ -413,7 +413,7 @@ fhandler_dev_mem::fstat (struct stat *buf) memset (buf, 0, sizeof *buf); buf->st_mode = S_IFCHR; - if (os_being_run != winNT) + if (!iswinnt) buf->st_mode |= S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH; -- cgit v1.2.3