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:
authorCorinna Vinschen <corinna@vinschen.de>2015-02-15 12:13:03 +0300
committerCorinna Vinschen <corinna@vinschen.de>2015-02-15 12:13:03 +0300
commit75fb392aa354661a314d2cb161518a44371e3c99 (patch)
treeaeb000a2512b8f364898abf7b5f9e3cbc5e3e65f
parentd0695371df1c244d4b44f261f457f4d0e824220d (diff)
* i686.din (__mempcpy): Move symbol export from here...
* common.din (__mempcpy): ... to here.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/common.din1
-rw-r--r--winsup/cygwin/i686.din1
-rw-r--r--winsup/cygwin/release/1.7.353
4 files changed, 9 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 3b5a5b6ac..e0c515094 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2015-02-15 Corinna Vinschen <corinna@vinschen.de>
+
+ * i686.din (__mempcpy): Move symbol export from here...
+ * common.din (__mempcpy): ... to here.
+
2015-02-14 Corinna Vinschen <corinna@vinschen.de>
* path.h (path_conv): Make path_flags private. Rename known_suffix to
diff --git a/winsup/cygwin/common.din b/winsup/cygwin/common.din
index a7844be46..17538ffbe 100644
--- a/winsup/cygwin/common.din
+++ b/winsup/cygwin/common.din
@@ -68,6 +68,7 @@ __isnand NOSIGFE
__isnanf NOSIGFE
__locale_mb_cur_max NOSIGFE
__main NOSIGFE
+__mempcpy = mempcpy NOSIGFE
__opendir_with_d_ino SIGFE
__res_close SIGFE
__res_init SIGFE
diff --git a/winsup/cygwin/i686.din b/winsup/cygwin/i686.din
index 2ef0135fd..a9b31172b 100644
--- a/winsup/cygwin/i686.din
+++ b/winsup/cygwin/i686.din
@@ -43,7 +43,6 @@ __f_tan = _f_tan NOSIGFE
__f_tanf = _f_tanf NOSIGFE
__getdelim SIGFE
__getline SIGFE
-__mempcpy = mempcpy NOSIGFE
__wrap__Znaj NOSIGFE # void *operator new[](std::size_t sz) throw (std::bad_alloc)
__wrap__ZnajRKSt9nothrow_t NOSIGFE # void *operator new[](std::size_t sz, const std::nothrow_t &nt) throw()
__wrap__Znwj NOSIGFE # void *operator new(std::size_t sz) throw (std::bad_alloc)
diff --git a/winsup/cygwin/release/1.7.35 b/winsup/cygwin/release/1.7.35
index 976bce74a..1c83571fd 100644
--- a/winsup/cygwin/release/1.7.35
+++ b/winsup/cygwin/release/1.7.35
@@ -27,3 +27,6 @@ Bug Fixes
array for bookkeeping purposes while iterating over its entries. This
broke reusing the acl in the calling application (e.g. setfacl).
Addresses: https://cygwin.com/ml/cygwin/2015-02/msg00304.html
+
+- 64 bit: Export forgottne symbol __mempcpy.
+ Addresses: https://cygwin.com/ml/cygwin/2015-02/msg00394.html