diff options
author | Christopher Faylor <me@cgf.cx> | 2001-08-04 21:10:52 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-08-04 21:10:52 +0000 |
commit | e5ba4c060e410f92abe570933fe2bda239f34bd9 (patch) | |
tree | f00aba6a99486b9642573415d571c73ab3a0b80b /winsup/cygwin/syslog.cc | |
parent | 17195d08bc7b8e4b9b4bbc21be92497c64f7045c (diff) | |
download | cygnal-e5ba4c060e410f92abe570933fe2bda239f34bd9.tar.gz cygnal-e5ba4c060e410f92abe570933fe2bda239f34bd9.tar.bz2 cygnal-e5ba4c060e410f92abe570933fe2bda239f34bd9.zip |
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.
Diffstat (limited to 'winsup/cygwin/syslog.cc')
-rw-r--r-- | winsup/cygwin/syslog.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/syslog.cc b/winsup/cygwin/syslog.cc index 383848372..df90e4e29 100644 --- a/winsup/cygwin/syslog.cc +++ b/winsup/cygwin/syslog.cc @@ -300,7 +300,7 @@ syslog (int priority, const char *message, ...) return; } - if (os_being_run != winNT) + if (!iswinnt) { /* Add a priority string - not needed for NT as NT has its own priority codes. */ @@ -336,7 +336,7 @@ syslog (int priority, const char *message, ...) msg_strings[0] = total_msg; - if (os_being_run == winNT) + if (iswinnt) { /* For NT, open the event log and send the message */ HANDLE hEventSrc = RegisterEventSourceA (NULL, (process_ident != NULL) ? |