diff options
author | Christopher Faylor <me@cgf.cx> | 2000-12-26 03:21:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-12-26 03:21:05 +0000 |
commit | 2803e941b340e21113bfff9e22e1bc25ba5f9990 (patch) | |
tree | 6cd692c2ec34f704dce607a0c2669973c84c4765 /winsup/cygwin/autoload.cc | |
parent | 48c4679d55f2bf752fadbba03669b652165353c4 (diff) | |
download | cygnal-2803e941b340e21113bfff9e22e1bc25ba5f9990.tar.gz cygnal-2803e941b340e21113bfff9e22e1bc25ba5f9990.tar.bz2 cygnal-2803e941b340e21113bfff9e22e1bc25ba5f9990.zip |
* autoload.h: Make DLL initializers global to avoid inlining.
* exceptions.cc (interrupt_setup): Reorganize arguments to allow use of
regparm.
(interrupt_now): Ditto.
(interrupt_on_return): Ditto.
(call_handler): Ditto.
Diffstat (limited to 'winsup/cygwin/autoload.cc')
-rw-r--r-- | winsup/cygwin/autoload.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/autoload.cc b/winsup/cygwin/autoload.cc index 83081b73c..a55680762 100644 --- a/winsup/cygwin/autoload.cc +++ b/winsup/cygwin/autoload.cc @@ -176,8 +176,8 @@ LoadDLLinitfunc (ws2_32) return 0; } -static void dummy_autoload (void) __attribute__ ((unused)); -static void +static void __stdcall dummy_autoload (void) __attribute__ ((unused)); +static void __stdcall dummy_autoload (void) { LoadDLLinit (advapi32) |