From 6487794d94ba4804624e9c8b23870dffb61088c2 Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Fri, 2 Mar 2007 06:08:37 +0000 Subject: [PATCH] 1.0.3.13: "Oops" --- BUGS | 4 +--- contrib/sb-bsd-sockets/sb-bsd-sockets.asd | 7 +++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/BUGS b/BUGS index e68157d..f97463e 100644 --- a/BUGS +++ b/BUGS @@ -883,11 +883,9 @@ WORKAROUND: 283: Thread safety: libc functions There are places that we call unsafe-for-threading libc functions that we should find alternatives for, or put locks around. Known or - strongly suspected problems, as of 0.8.3.10: please update this + strongly suspected problems, as of 1.0.3.13: please update this bug instead of creating new ones - gethostbyaddr in sb-bsd-sockets - 284: Thread safety: special variables There are lots of special variables in SBCL, and I feel sure that at least some of them are indicative of potentially thread-unsafe diff --git a/contrib/sb-bsd-sockets/sb-bsd-sockets.asd b/contrib/sb-bsd-sockets/sb-bsd-sockets.asd index eb49b66..e58bfe9 100644 --- a/contrib/sb-bsd-sockets/sb-bsd-sockets.asd +++ b/contrib/sb-bsd-sockets/sb-bsd-sockets.asd @@ -6,7 +6,7 @@ (defsystem sb-bsd-sockets :version "0.58" - :depends-on (sb-grovel) + :depends-on (sb-grovel) #+sb-building-contrib :pathname #+sb-building-contrib "SYS:CONTRIB;SB-BSD-SOCKETS;" :components ((:file "defpackage") @@ -21,10 +21,10 @@ "win32-constants" :package :sockint :depends-on ("defpackage" "win32-lib")) - #+win32 (:file "win32-sockets" + #+win32 (:file "win32-sockets" :depends-on ("win32-constants")) (:file "sockets" - :depends-on #-win32 ("constants") + :depends-on #-win32 ("constants") #+win32 ("win32-sockets")) (:file "sockopt" :depends-on ("sockets")) (:file "inet" :depends-on ("sockets" "split")) @@ -36,7 +36,6 @@ ;; (:static-file "INSTALL") ;; (:static-file "README") ;; (:static-file "index" :pathname "index.html") - (:static-file "doc" :pathname "doc.lisp") (:static-file "TODO"))) (defmethod perform :after ((o load-op) (c (eql (find-system :sb-bsd-sockets)))) -- 1.7.10.4