00:11:27 sellout [~Adium@195.91.111.215] has joined #ccl 00:42:11 -!- sellout [~Adium@195.91.111.215] has quit [Quit: Leaving.] 00:51:27 -!- gbyers [~gb@c-68-35-35-22.hsd1.nm.comcast.net] has quit [Ping timeout: 276 seconds] 02:16:39 rme [~rme@50.43.154.178] has joined #ccl 02:17:36 dsantiago [~dsantiago@38.106.58.130] has joined #ccl 02:35:46 gbyers [~gb@c-68-35-35-22.hsd1.nm.comcast.net] has joined #ccl 03:03:42 -!- alms_ is now known as alms 03:04:39 alms__ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 03:04:55 -!- alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Read error: Connection reset by peer] 03:04:55 -!- alms__ is now known as alms_ 03:33:42 -!- rme [~rme@50.43.154.178] has quit [Quit: rme] 05:07:00 -!- dsantiago [~dsantiago@38.106.58.130] has quit [Ping timeout: 250 seconds] 06:16:41 -!- gbyers [~gb@c-68-35-35-22.hsd1.nm.comcast.net] has quit [Ping timeout: 252 seconds] 06:35:22 sellout [~Adium@195.91.109.215] has joined #ccl 07:34:03 jdz [~jdz@193.206.22.97] has joined #ccl 08:38:44 milanj [~milanj_@79-101-181-174.dynamic.isp.telekom.rs] has joined #ccl 08:44:56 -!- milanj [~milanj_@79-101-181-174.dynamic.isp.telekom.rs] has quit [Quit: Leaving] 09:09:22 yakov [~yakov@ip-83-149-3-160.nwgsm.ru] has joined #ccl 09:43:26 -!- yakov [~yakov@ip-83-149-3-160.nwgsm.ru] has quit [Ping timeout: 240 seconds] 09:47:53 yakov [~yakov@ip-83-149-3-226.nwgsm.ru] has joined #ccl 10:55:04 hargettp [~hargettp@pool-71-184-190-236.bstnma.east.verizon.net] has joined #ccl 11:06:46 -!- yakov [~yakov@ip-83-149-3-226.nwgsm.ru] has quit [Ping timeout: 240 seconds] 11:15:16 yakov [~yakov@ip-83-149-3-172.nwgsm.ru] has joined #ccl 11:19:40 -!- hargettp [~hargettp@pool-71-184-190-236.bstnma.east.verizon.net] has quit [Quit: Leaving...] 11:20:11 -!- yakov [~yakov@ip-83-149-3-172.nwgsm.ru] has quit [Ping timeout: 240 seconds] 11:20:14 hargettp [~hargettp@pool-71-184-190-236.bstnma.east.verizon.net] has joined #ccl 11:38:19 -!- hargettp [~hargettp@pool-71-184-190-236.bstnma.east.verizon.net] has quit [Quit: Linkinus - http://linkinus.com] 12:17:09 leo2007 [~leo@th041140.ip.tsinghua.edu.cn] has joined #ccl 12:55:22 yakov [~yakov@ip-83-149-3-162.nwgsm.ru] has joined #ccl 13:21:11 -!- jdz [~jdz@193.206.22.97] has quit [Ping timeout: 258 seconds] 13:36:21 jdz [~jdz@193.206.22.97] has joined #ccl 13:48:17 rme [~rme@50.43.154.178] has joined #ccl 14:19:11 -!- yakov [~yakov@ip-83-149-3-162.nwgsm.ru] has quit [Ping timeout: 240 seconds] 14:22:06 -!- jdz [~jdz@193.206.22.97] has quit [Ping timeout: 240 seconds] 14:33:27 yakov [~yakov@ip-83-149-3-16.nwgsm.ru] has joined #ccl 14:34:56 jdz [~jdz@193.206.22.97] has joined #ccl 15:07:41 -!- jdz [~jdz@193.206.22.97] has quit [Ping timeout: 240 seconds] 15:23:34 -!- yakov [~yakov@ip-83-149-3-16.nwgsm.ru] has quit [Ping timeout: 240 seconds] 15:24:58 yakov [~yakov@ip-83-149-3-229.nwgsm.ru] has joined #ccl 15:48:38 Ok, I know I've run into this before, but it's been a while since I've done much with threads. (defvar *foo* (make-hash-table))  how can I make that visible to all my threads  I don't create the threads until after that variable is defined. 16:00:13 jdz [~jdz@host67-17-dynamic.8-87-r.retail.telecomitalia.it] has joined #ccl 16:28:04 -!- rme [rme@FDA5E34D.ED8853D8.699BA7A6.IP] has quit [Quit: rme] 16:28:04 -!- rme [~rme@50.43.154.178] has quit [Quit: rme] 16:39:09 -!- yakov [~yakov@ip-83-149-3-229.nwgsm.ru] has quit [Ping timeout: 240 seconds] 16:50:41 sellout, It's visible, without doing anything 16:50:45 It's a global variable 16:51:07 If you LET-bind it in a thread, THAT binding is visible to only that thread 16:51:08 rme [~rme@50.43.154.178] has joined #ccl 16:52:20 Hash table access is thread-safe in CCL by default. Not in some other lisps,though 17:04:42 dsantiago [~dsantiago@38.106.58.130] has joined #ccl 17:07:59 -!- jdz [~jdz@host67-17-dynamic.8-87-r.retail.telecomitalia.it] has quit [Read error: Operation timed out] 17:29:31 gbyers [~gb@c-68-35-35-22.hsd1.nm.comcast.net] has joined #ccl 17:35:42 billstclair: Ah, thanks. That kicked me off my threading fixation  problem was that it was defined in a different package than I thought, and not exported. *facepalm* 17:41:14 -!- alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Quit: alms_] 17:42:13 alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 17:53:32 -!- alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Quit: alms_] 17:53:56 alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 17:55:44 -!- alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Client Quit] 17:56:23 alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 18:31:41 -!- gbyers [~gb@c-68-35-35-22.hsd1.nm.comcast.net] has quit [Ping timeout: 250 seconds] 18:34:17 gbyers [~gb@c-68-35-35-22.hsd1.nm.comcast.net] has joined #ccl 19:14:14 -!- dsantiago [~dsantiago@38.106.58.130] has quit [Quit: Computer has gone to sleep.] 19:20:01 -!- sellout [~Adium@195.91.109.215] has quit [Quit: Leaving.] 19:28:58 sellout [~Adium@195.91.109.215] has joined #ccl 19:43:00 -!- sellout [~Adium@195.91.109.215] has quit [Read error: Connection reset by peer] 19:43:10 sellout [~Adium@195.91.109.215] has joined #ccl 19:43:26 -!- sellout [~Adium@195.91.109.215] has quit [Client Quit] 19:43:33 sellout [~Adium@195.91.109.215] has joined #ccl 19:43:36 -!- sellout is now known as Guest28394 20:28:41 -!- alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Ping timeout: 250 seconds] 20:32:04 Modius [~Modius@cpe-70-123-140-183.austin.res.rr.com] has joined #ccl 20:32:25 alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 21:14:26 -!- alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Quit: alms_] 21:24:59 alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has joined #ccl 21:41:44 -!- Guest28394 [~Adium@195.91.109.215] has quit [Quit: Leaving.] 21:41:53 -!- alms_ [~alms_@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Quit: alms_] 21:43:09 sellout [~Adium@195.91.109.215] has joined #ccl 22:13:56 -!- sellout [~Adium@195.91.109.215] has quit [Quit: Leaving.] 23:38:49 -!- rme [rme@FDA5E34D.ED8853D8.699BA7A6.IP] has quit [Quit: rme] 23:38:50 -!- rme [~rme@50.43.154.178] has quit [Quit: rme]