|
[Sbcl-commits] CVS: sbcl/tools-for-build ldso-stubs.lisp, 1.23, 1.24
From: Cyrus Harmon <slyrus@us...> - 2010-01-21 05:09
|
Update of /cvsroot/sbcl/sbcl/tools-for-build
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv12631/tools-for-build
Modified Files:
ldso-stubs.lisp
Log Message:
1.0.34.9: darwin/x86-64 sb-posix:stat fixes from Kei Suzuki
* sb-unix:unix-stat/lstat/fstat return the 32bit inode with x86 and
the 64bit inode with x86-64,
* sb-posix:stat/lstat/fstat get stat values using the old stat calls
with x86 and the new ones with x86-64
* re-enable now-working sb-posix stat tests
Index: ldso-stubs.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/tools-for-build/ldso-stubs.lisp,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- ldso-stubs.lisp 13 May 2009 13:58:32 -0000 1.23
+++ ldso-stubs.lisp 21 Jan 2010 05:09:44 -0000 1.24
@@ -220,6 +220,7 @@
"fork"
"free"
"fstat"
+ #!+inode64 "fstat$INODE64"
"fsync"
"ftruncate"
"getcwd"
@@ -250,6 +251,7 @@
"log1p"
"lseek"
"lstat"
+ #!+inode64 "lstat$INODE64"
"malloc"
"memmove"
"mkdir"
@@ -274,6 +276,7 @@
"sinh"
"socket"
"stat"
+ #!+inode64 "stat$INODE64"
"strerror"
"strlen"
"symlink"
|
| Thread | Author | Date |
|---|---|---|
| [Sbcl-commits] CVS: sbcl/tools-for-build ldso-stubs.lisp, 1.23, 1.24 | Cyrus Harmon <slyrus@us...> |