00:37:34 -!- billstclair [~billstcla@unaffiliated/billstclair] has quit [Ping timeout: 265 seconds] 00:50:05 billstclair [~billstcla@unaffiliated/billstclair] has joined #ccl 00:57:39 sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has joined #ccl 01:08:47 -!- sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has quit [Quit: sellout] 01:21:11 -!- pemryan [~pem@2001:cc0:201e:107:221:86ff:fe1a:e5aa] has left #ccl 01:31:21 sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has joined #ccl 01:31:26 -!- sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has quit [Client Quit] 01:31:57 sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has joined #ccl 01:38:38 -!- sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has quit [Quit: sellout] 01:40:33 sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has joined #ccl 01:52:04 -!- sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has quit [Quit: sellout] 02:01:05 sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has joined #ccl 02:04:22 nunb [~nundan@59.178.196.158] has joined #ccl 02:58:02 -!- sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has quit [Quit: sellout] 03:23:30 -!- leo2007 [~leo@cpc1-cmbg13-0-0-cust596.cmbg.cable.ntl.com] has quit [Quit: reboot] 03:42:42 bfulgham_ [~brent@adsl-69-234-135-165.dsl.irvnca.pacbell.net] has joined #ccl 03:49:10 -!- nunb [~nundan@59.178.196.158] has quit [Read error: Connection reset by peer] 03:49:37 nunb [~nundan@59.178.208.108] has joined #ccl 03:55:41 -!- rme [~rme@pool-70-105-123-78.chi.dsl-w.verizon.net] has quit [Quit: rme] 04:34:10 -!- nunb [~nundan@59.178.208.108] has quit [Read error: Connection reset by peer] 04:34:41 nunb [~nundan@59.178.212.251] has joined #ccl 04:54:59 -!- clop [~jared@moat3.centtech.com] has quit [Ping timeout: 260 seconds] 05:14:20 -!- brett_h [~brett_h@75-101-56-240.dsl.static.sonic.net] has quit [Remote host closed the connection] 05:17:36 clop [~jared@moat3.centtech.com] has joined #ccl 05:26:45 brett_h [~brett_h@c-67-169-69-95.hsd1.ca.comcast.net] has joined #ccl 05:44:45 -!- bfulgham_ [~brent@adsl-69-234-135-165.dsl.irvnca.pacbell.net] has quit [Quit: bfulgham_] 07:22:10 -!- nunb [~nundan@59.178.212.251] has quit [Read error: Connection reset by peer] 07:22:39 nunb [~nundan@59.178.64.36] has joined #ccl 07:43:10 -!- brett_h [~brett_h@c-67-169-69-95.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 08:15:19 -!- nunb [~nundan@59.178.64.36] has quit [Quit: Leaving] 08:36:21 -!- Intensity [Ss6XTjcu35@unaffiliated/intensity] has quit [Quit: Intensity] 09:30:35 leo2007 [~leo@cpc1-cmbg13-0-0-cust596.cmbg.cable.ntl.com] has joined #ccl 09:34:08 billstclair_ [~billstcla@gw3.tacwap.org] has joined #ccl 09:34:29 -!- billstclair [~billstcla@unaffiliated/billstclair] has quit [Ping timeout: 240 seconds] 09:35:16 -!- billstclair_ is now known as billstclair 09:35:21 -!- billstclair [~billstcla@gw3.tacwap.org] has quit [Changing host] 09:35:21 billstclair [~billstcla@unaffiliated/billstclair] has joined #ccl 09:52:41 tfb [~tfb@212.183.140.2] has joined #ccl 10:28:01 -!- tfb [~tfb@212.183.140.2] has quit [Ping timeout: 258 seconds] 11:05:11 tfb [~tfb@212.183.140.32] has joined #ccl 13:16:00 rme [~rme@pool-70-105-123-78.chi.dsl-w.verizon.net] has joined #ccl 13:33:50 jajcloz [~jaj@2002:4855:eb9a:0:219:e3ff:fe02:96b8] has joined #ccl 14:57:28 the only way to get something like ATOMIC-PUSH/ATOMIC-POP (these are from Scieneer) to work in CCL would be to actually write them right? and they should preferably use GRAB-LOCK and/or WITH-GRAB-LOCK in their implementation? 15:02:39 anRch [~markmilli@64.134.99.140] has joined #ccl 15:12:03 hypno: using a lock would work. M-. on all-processes to see an example of how to do it. 15:14:30 ok. 15:14:54 it seems to work quite nice just with a stupid push so far actually, but it's unsafe i guess. :) 15:15:33 another question: is there someway to setup a "dispatch" handler so that a thread takes care of the cleanup of itself, if signaled to die? 15:16:03 i have an opengl window running in a separate thread. i want to be able to kill it and restart without taking down ccl completely. 15:16:38 now, glfw needs to call 2 C routines for this, but PROCESS-INTERRUPT do not seem to like that very much. 15:18:12 unwind-protect? 15:19:05 milanj [~milanj_@93.86.241.49] has joined #ccl 15:21:23 Actually, I don't know right off hand. 15:23:51 perhaps you could subclass ccl:process and specialize process-kill for it. 15:24:02 i find a way around it. I am so close to a really cool GL-development environment now. Just one tiny itchy little problem left. 15:32:40 -!- anRch [~markmilli@64.134.99.140] has quit [Ping timeout: 240 seconds] 15:39:50 anRch [~markmilli@64.134.99.140] has joined #ccl 15:54:32 I have a "Naughty Dog"-like kind of a setup now. I can add and remove objects to render from within emacs over slime, etc. Neat. :D 15:57:30 hypno: What OS are you using? 15:57:45 OS X. 15:59:23 Tiger 10.4.11/x86 with CCL 1.4 to be exact. 16:10:46 -!- tfb [~tfb@212.183.140.32] has quit [Quit: tfb] 16:16:28 -!- anRch [~markmilli@64.134.99.140] has quit [Ping timeout: 276 seconds] 16:19:20 brett_h [~brett_h@c-67-169-69-95.hsd1.ca.comcast.net] has joined #ccl 16:20:43 anRch [~markmilli@64.134.99.140] has joined #ccl 16:44:45 -!- anRch [~markmilli@64.134.99.140] has quit [Ping timeout: 240 seconds] 16:56:09 -!- brett_h [~brett_h@c-67-169-69-95.hsd1.ca.comcast.net] has quit [Remote host closed the connection] 17:18:03 brett_h [~brett_h@75-101-56-240.dsl.static.sonic.net] has joined #ccl 17:34:43 -!- milanj [~milanj_@93.86.241.49] has quit [Ping timeout: 260 seconds] 17:39:14 milanj [~milanj_@109.92.106.254] has joined #ccl 17:40:48 -!- segv [~mb@p54BE6420.dip.t-dialin.net] has quit [Ping timeout: 252 seconds] 17:47:15 segv [~mb@p54BE67DE.dip.t-dialin.net] has joined #ccl 17:50:21 anRch [~markmilli@64.134.68.201] has joined #ccl 18:08:05 gz [~gz@209-6-40-245.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com] has joined #ccl 18:54:49 -!- anRch [~markmilli@64.134.68.201] has quit [Quit: anRch] 19:11:22 -!- jajcloz [~jaj@2002:4855:eb9a:0:219:e3ff:fe02:96b8] has quit [Quit: jajcloz] 19:46:12 -!- tvaalen [~r@unaffiliated/tvaal] has quit [Ping timeout: 252 seconds] 19:58:25 tvaalen [~r@terminal.se] has joined #ccl 20:04:57 -!- tvaalen [~r@terminal.se] has quit [Ping timeout: 276 seconds] 20:32:57 tvaalen [~r@terminal.se] has joined #ccl 21:02:55 -!- brett_h [~brett_h@75-101-56-240.dsl.static.sonic.net] has quit [Remote host closed the connection] 21:45:18 -!- tvaalen [~r@terminal.se] has quit [Changing host] 21:45:18 tvaalen [~r@unaffiliated/tvaal] has joined #ccl 23:10:47 sellout [~greg@c-24-128-48-180.hsd1.ma.comcast.net] has joined #ccl 23:13:49 -!- alms [alms@clozure-AD075F06.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Quit: alms] 23:13:49 -!- alms [~alms@146-115-42-237.c3-0.bkl-ubr1.sbo-bkl.ma.cable.rcn.com] has quit [Quit: alms] 23:34:28 -!- billstclair [~billstcla@unaffiliated/billstclair] has quit [Quit: Ex-Chat]