Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-12-31 09:30:48 +0300
committerChristopher Faylor <me@cgf.cx>2003-12-31 09:30:48 +0300
commita7d42fef9fe9881650e62b7d0318e39a06e97697 (patch)
tree664ec1102a108ab355af67ec5aa673860806240a
parentf7cb207b69067e4d1226f4d0786bc4c287cbe173 (diff)
* cygwin.din: Make crt0 functions NOSIGFE.
* include/cygwin/version.h: Gratuitous comment change. * lib/_cygwin_crt0_common.cc: Remove unneeded declaration.
-rw-r--r--winsup/cygwin/ChangeLog6
-rw-r--r--winsup/cygwin/cygwin.din10
-rw-r--r--winsup/cygwin/include/cygwin/version.h2
-rw-r--r--winsup/cygwin/lib/_cygwin_crt0_common.cc1
4 files changed, 12 insertions, 7 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 01e797497..d330ea2ed 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -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>
* cygtls.h (_threadinfo::stack): Increase stack size to accommodate
diff --git a/winsup/cygwin/cygwin.din b/winsup/cygwin/cygwin.din
index 9524bb066..f60d2d5b5 100644
--- a/winsup/cygwin/cygwin.din
+++ b/winsup/cygwin/cygwin.din
@@ -319,8 +319,8 @@ inet_addr = cygwin_inet_addr SIGFE
inet_aton = cygwin_inet_aton SIGFE
inet_network = cygwin_inet_network SIGFE
inet_ntoa = cygwin_inet_ntoa SIGFE
-cygwin_internal SIGFE
-cygwin32_internal = cygwin_internal SIGFE
+cygwin_internal NOSIGFE
+cygwin32_internal = cygwin_internal NOSIGFE
listen = cygwin_listen SIGFE
cygwin_logon_user SIGFE
lstat SIGFE
@@ -370,9 +370,9 @@ _div = div NOSIGFE
dlclose SIGFE
dlerror NOSIGFE
dlfork NOSIGFE
-dll_crt0__FP11per_process SIGFE
-dll_dllcrt0 SIGFE
-dll_noncygwin_dllcrt0 SIGFE
+dll_crt0__FP11per_process NOSIGFE
+dll_dllcrt0 NOSIGFE
+dll_noncygwin_dllcrt0 NOSIGFE
dlopen SIGFE
dlsym SIGFE
drand48 NOSIGFE
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h
index be6d392ee..4b083d0e3 100644
--- a/winsup/cygwin/include/cygwin/version.h
+++ b/winsup/cygwin/include/cygwin/version.h
@@ -38,7 +38,7 @@ details. */
means of Cygwin versioning: */
/* 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. */
#define CYGWIN_VERSION_DLL_MAJOR 1005
diff --git a/winsup/cygwin/lib/_cygwin_crt0_common.cc b/winsup/cygwin/lib/_cygwin_crt0_common.cc
index 565ba2571..f1e724823 100644
--- a/winsup/cygwin/lib/_cygwin_crt0_common.cc
+++ b/winsup/cygwin/lib/_cygwin_crt0_common.cc
@@ -20,7 +20,6 @@ details. */
extern "C"
{
char **environ;
-void cygwin_crt0 (MainFunc);
int cygwin_attach_dll (HMODULE, MainFunc);
int cygwin_attach_noncygwin_dll (HMODULE, MainFunc);
int main (int, char **, char **);