* cygwin.din: Make crt0 functions NOSIGFE.

* include/cygwin/version.h: Gratuitous comment change.
* lib/_cygwin_crt0_common.cc: Remove unneeded declaration.
This commit is contained in:
Christopher Faylor 2003-12-31 06:30:48 +00:00
parent f7cb207b69
commit a7d42fef9f
4 changed files with 12 additions and 7 deletions

View File

@ -1,3 +1,9 @@
2003-12-31 Christopher Faylor <cgf@redhat.com>
* cygwin.din: Make crt0 functions NOSIGFE.
* include/cygwin/version.h: Gratuitous comment change.
* lib/_cygwin_crt0_common.cc: Remove unneeded declaration.
2003-12-29 Christopher Faylor <cgf@redhat.com> 2003-12-29 Christopher Faylor <cgf@redhat.com>
* cygtls.h (_threadinfo::stack): Increase stack size to accommodate * cygtls.h (_threadinfo::stack): Increase stack size to accommodate

View File

@ -319,8 +319,8 @@ inet_addr = cygwin_inet_addr SIGFE
inet_aton = cygwin_inet_aton SIGFE inet_aton = cygwin_inet_aton SIGFE
inet_network = cygwin_inet_network SIGFE inet_network = cygwin_inet_network SIGFE
inet_ntoa = cygwin_inet_ntoa SIGFE inet_ntoa = cygwin_inet_ntoa SIGFE
cygwin_internal SIGFE cygwin_internal NOSIGFE
cygwin32_internal = cygwin_internal SIGFE cygwin32_internal = cygwin_internal NOSIGFE
listen = cygwin_listen SIGFE listen = cygwin_listen SIGFE
cygwin_logon_user SIGFE cygwin_logon_user SIGFE
lstat SIGFE lstat SIGFE
@ -370,9 +370,9 @@ _div = div NOSIGFE
dlclose SIGFE dlclose SIGFE
dlerror NOSIGFE dlerror NOSIGFE
dlfork NOSIGFE dlfork NOSIGFE
dll_crt0__FP11per_process SIGFE dll_crt0__FP11per_process NOSIGFE
dll_dllcrt0 SIGFE dll_dllcrt0 NOSIGFE
dll_noncygwin_dllcrt0 SIGFE dll_noncygwin_dllcrt0 NOSIGFE
dlopen SIGFE dlopen SIGFE
dlsym SIGFE dlsym SIGFE
drand48 NOSIGFE drand48 NOSIGFE

View File

@ -38,7 +38,7 @@ details. */
means of Cygwin versioning: */ means of Cygwin versioning: */
/* The DLL major and minor numbers correspond to the "version of /* The DLL major and minor numbers correspond to the "version of
the Cygwin library". This version is used to track important the Cygwin shared library". This version is used to track important
changes to the DLL and is mainly informative in nature. */ changes to the DLL and is mainly informative in nature. */
#define CYGWIN_VERSION_DLL_MAJOR 1005 #define CYGWIN_VERSION_DLL_MAJOR 1005

View File

@ -20,7 +20,6 @@ details. */
extern "C" extern "C"
{ {
char **environ; char **environ;
void cygwin_crt0 (MainFunc);
int cygwin_attach_dll (HMODULE, MainFunc); int cygwin_attach_dll (HMODULE, MainFunc);
int cygwin_attach_noncygwin_dll (HMODULE, MainFunc); int cygwin_attach_noncygwin_dll (HMODULE, MainFunc);
int main (int, char **, char **); int main (int, char **, char **);