aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/dyn_load.c
diff options
context:
space:
mode:
authorAdam Megacz <adam@xwt.org>2002-03-12 19:06:36 +0000
committerAdam Megacz <megacz@gcc.gnu.org>2002-03-12 19:06:36 +0000
commit916c46b5ab32a7cc6deb435c8f2a9451edd39208 (patch)
treeba69ee2014e9ab9f0759258ec9d82f1ac809d901 /boehm-gc/dyn_load.c
parent089c8f976485ea1a57ca4d6590cea48782c51140 (diff)
downloadgcc-916c46b5ab32a7cc6deb435c8f2a9451edd39208.zip
gcc-916c46b5ab32a7cc6deb435c8f2a9451edd39208.tar.gz
gcc-916c46b5ab32a7cc6deb435c8f2a9451edd39208.tar.bz2
dyn_load.c: Renamed GC_win32s to GC_no_win32_dlls.
2002-03-12 Adam Megacz <adam@xwt.org> * dyn_load.c: Renamed GC_win32s to GC_no_win32_dlls. * misc.c: Renamed GC_is_win32s() to GC_no_win32_dlls * os_dep.c: Renamed GC_win32s to GC_no_win32_dlls and statically initialized it to TRUE if compiling with GCC. * win32_threads.c (thread_start): We no longer use SEH if compiling with GCC. * mark.c (GC_mark_some): We no longer use SEH if compiling with GCC. From-SVN: r50671
Diffstat (limited to 'boehm-gc/dyn_load.c')
-rw-r--r--boehm-gc/dyn_load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/boehm-gc/dyn_load.c b/boehm-gc/dyn_load.c
index d80600b..a267637 100644
--- a/boehm-gc/dyn_load.c
+++ b/boehm-gc/dyn_load.c
@@ -775,7 +775,7 @@ void GC_register_dynamic_libraries()
# endif
# ifndef MSWINCE
- extern GC_bool GC_win32s;
+ extern GC_bool GC_no_win32_dlls;
# endif
void GC_register_dynamic_libraries()
@@ -788,7 +788,7 @@ void GC_register_dynamic_libraries()
char * limit, * new_limit;
# ifdef MSWIN32
- if (GC_win32s) return;
+ if (GC_no_win32_dlls) return;
# endif
base = limit = p = GC_sysinfo.lpMinimumApplicationAddress;
# if defined(MSWINCE) && !defined(_WIN32_WCE_EMULATION)