2016-08-19T00:03:46Z sjl quit (Read error: Connection reset by peer) 2016-08-19T00:40:27Z oleo quit (Read error: Connection reset by peer) 2016-08-19T00:40:33Z oleo_ joined #sbcl 2016-08-19T00:40:49Z Bike joined #sbcl 2016-08-19T00:54:02Z slyrus quit (Ping timeout: 244 seconds) 2016-08-19T01:11:33Z em1l_ joined #sbcl 2016-08-19T01:14:52Z em1l quit (Ping timeout: 250 seconds) 2016-08-19T01:18:29Z DGASAU quit (Read error: Connection reset by peer) 2016-08-19T01:19:00Z DGASAU joined #sbcl 2016-08-19T01:21:13Z DGASAU quit (Read error: Connection reset by peer) 2016-08-19T01:22:22Z DGASAU joined #sbcl 2016-08-19T02:08:29Z milanj quit (Quit: This computer has gone to sleep) 2016-08-19T02:54:27Z Bike quit (Ping timeout: 264 seconds) 2016-08-19T03:05:54Z Bike joined #sbcl 2016-08-19T04:14:44Z ASau joined #sbcl 2016-08-19T04:40:27Z oleo_ quit (Quit: Leaving) 2016-08-19T04:56:47Z cromachina quit (Read error: Connection reset by peer) 2016-08-19T04:57:57Z cromachina joined #sbcl 2016-08-19T05:26:38Z shka_ joined #sbcl 2016-08-19T05:35:15Z jibanes quit (Ping timeout: 264 seconds) 2016-08-19T05:36:49Z jibanes joined #sbcl 2016-08-19T05:45:31Z fiddlerwoaroof quit (Ping timeout: 258 seconds) 2016-08-19T05:46:46Z fiddlerwoaroof joined #sbcl 2016-08-19T05:48:19Z karswell` joined #sbcl 2016-08-19T05:49:02Z karswell quit (Remote host closed the connection) 2016-08-19T05:57:27Z fiddlerwoaroof quit (Ping timeout: 264 seconds) 2016-08-19T06:13:42Z fiddlerwoaroof joined #sbcl 2016-08-19T06:20:01Z fiddlerwoaroof quit (Ping timeout: 258 seconds) 2016-08-19T06:20:19Z SamSkulls quit (Remote host closed the connection) 2016-08-19T06:26:55Z gingerale joined #sbcl 2016-08-19T06:29:42Z shka_ quit (Ping timeout: 244 seconds) 2016-08-19T06:36:01Z fiddlerwoaroof joined #sbcl 2016-08-19T06:49:03Z angavrilov joined #sbcl 2016-08-19T06:59:59Z DeadTrickster joined #sbcl 2016-08-19T07:22:21Z gingerale quit (Remote host closed the connection) 2016-08-19T07:29:47Z nzambe quit (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) 2016-08-19T07:30:26Z nzambe joined #sbcl 2016-08-19T07:46:13Z HerrBlume joined #sbcl 2016-08-19T07:47:28Z HerrBlume: hey, i get a strange error when building sbcl: REG_R10 undeclared. 2016-08-19T07:47:35Z HerrBlume: Are there missing headers. 2016-08-19T07:47:56Z HerrBlume: On a similar box there are no problems 2016-08-19T07:55:13Z Quadrescence: Copying from #lisp... 2016-08-19T07:55:14Z Quadrescence: [00:53.45] In SBCL, I am allocating foreign vectors so I can avoid the GC moving things around. I have the foreign vector deallocated in a finalizer of a Lisp object. My current problem is that (loop (allocate-lisp-obj)) will cause memory to run out and the finalizers are never called. 2016-08-19T07:55:16Z Quadrescence: [00:54.33] I suspect because there's still lisp heap space so it never feels like calling GC. Is there a good way to attempt a GC in this scenario? 2016-08-19T08:02:39Z edgar-rft joined #sbcl 2016-08-19T08:06:21Z flip214: Quadrescence: in SBCL there's (SB-EXT:GC) 2016-08-19T08:06:42Z flip214: but finalizers are a different story, I believe 2016-08-19T08:08:19Z Quadrescence: If I GC after every allocation, it works. But GCing after every alloc is extremely heavy-handed 2016-08-19T08:11:19Z Bike quit (Quit: tire) 2016-08-19T08:22:20Z HerrBlume left #sbcl 2016-08-19T09:37:53Z milanj joined #sbcl 2016-08-19T09:39:11Z White_Flame quit (Quit: http://quassel-irc.org - Chat comfortably. Anywhere.) 2016-08-19T09:39:35Z White_Flame joined #sbcl 2016-08-19T09:58:51Z ASau quit (Ping timeout: 258 seconds) 2016-08-19T10:39:12Z milanj quit (Quit: This computer has gone to sleep) 2016-08-19T11:06:12Z fe[nl]ix: Quadrescence: finalizers are not very reliable 2016-08-19T11:30:56Z milanj joined #sbcl 2016-08-19T11:35:17Z gargaml joined #sbcl 2016-08-19T12:11:35Z sjl joined #sbcl 2016-08-19T12:18:59Z cromachina: Quadrescence: have you looked at sb-sys:with-pinned-objects? 2016-08-19T12:21:08Z nyef: WITH-PINNED-OBJECTS doesn't seem as though it would apply to this problem...? 2016-08-19T12:24:07Z cromachina: why not? 2016-08-19T12:24:13Z cromachina: he didnt explain the scope of said objects 2016-08-19T12:24:31Z nyef: Ah, right, the moving-around bit. 2016-08-19T12:25:44Z nyef: Which actually brings to mind the interesting fact that you can push stuff to the pinned-object list for a thread outside of with-pinned-objects, resulting in a pinned of indefinite extent, rather than one of dynamic extent. 2016-08-19T12:25:51Z nyef: But only on non-x86oids. 2016-08-19T12:26:49Z cromachina: x86 already pins everything, right? 2016-08-19T12:27:55Z nyef: x86 only pins stack and register references. 2016-08-19T12:28:17Z nyef: So if you're trying to hold objects only pointed-to by the heap, x86oids won't do it. 2016-08-19T12:41:02Z oleo joined #sbcl 2016-08-19T13:29:21Z karswell` quit (Ping timeout: 258 seconds) 2016-08-19T13:39:14Z cromachina quit (Read error: Connection reset by peer) 2016-08-19T14:07:46Z DGASAU quit (Read error: Connection reset by peer) 2016-08-19T14:08:55Z DGASAU joined #sbcl 2016-08-19T14:23:51Z sjl quit (Ping timeout: 264 seconds) 2016-08-19T14:32:11Z slyrus joined #sbcl 2016-08-19T14:44:45Z karswell` joined #sbcl 2016-08-19T15:07:17Z sjl joined #sbcl 2016-08-19T15:36:38Z slyrus quit (Ping timeout: 250 seconds) 2016-08-19T15:37:03Z karswell` quit (Ping timeout: 264 seconds) 2016-08-19T15:42:21Z DGASAU quit (Read error: Connection reset by peer) 2016-08-19T15:48:44Z DeadTrickster_ joined #sbcl 2016-08-19T15:51:18Z DGASAU joined #sbcl 2016-08-19T15:51:22Z Bike joined #sbcl 2016-08-19T15:54:10Z DeadTrickster quit (Ping timeout: 265 seconds) 2016-08-19T15:58:24Z DeadTrickster joined #sbcl 2016-08-19T16:02:14Z DeadTrickster_ quit (Ping timeout: 260 seconds) 2016-08-19T16:05:51Z Quadrescence: The objects have indefinite extent. 2016-08-19T16:06:30Z Quadrescence: I suppose I'll just let GC take care of things in the Lisp heap until I can come up with a metric of sorts that says (if so) that it's not suitable. 2016-08-19T16:14:03Z nzambe quit (Ping timeout: 250 seconds) 2016-08-19T16:14:32Z nyef: I take it that hacking the GC to honor both the x86oid stack/register conservatism and the non-x86oid explicit pinned-objects list is also inappropriate? 2016-08-19T16:14:40Z fe[nl]ix: Quadrescence: can't you manually deallocate them ? 2016-08-19T16:24:22Z sjl quit (Ping timeout: 252 seconds) 2016-08-19T16:26:44Z sjl joined #sbcl 2016-08-19T16:42:59Z slyrus joined #sbcl 2016-08-19T16:46:22Z scymtym joined #sbcl 2016-08-19T16:57:30Z slyrus quit (Ping timeout: 258 seconds) 2016-08-19T17:00:18Z sjl__ joined #sbcl 2016-08-19T17:03:33Z sjl quit (Ping timeout: 276 seconds) 2016-08-19T17:04:55Z slyrus joined #sbcl 2016-08-19T17:06:11Z sjl joined #sbcl 2016-08-19T17:08:18Z sjl__ quit (Ping timeout: 244 seconds) 2016-08-19T17:11:58Z schjetne quit (Remote host closed the connection) 2016-08-19T17:13:03Z slyrus quit (Ping timeout: 264 seconds) 2016-08-19T17:30:21Z sjl quit (Ping timeout: 265 seconds) 2016-08-19T17:34:41Z shka_ joined #sbcl 2016-08-19T18:03:33Z schjetne joined #sbcl 2016-08-19T18:03:49Z milanj quit (Quit: This computer has gone to sleep) 2016-08-19T18:07:34Z schjetne quit (Remote host closed the connection) 2016-08-19T18:08:39Z gingerale joined #sbcl 2016-08-19T18:11:32Z DGASAU quit (Ping timeout: 240 seconds) 2016-08-19T18:29:58Z schjetne joined #sbcl 2016-08-19T18:38:58Z DGASAU joined #sbcl 2016-08-19T18:43:41Z milanj joined #sbcl 2016-08-19T19:23:38Z angavrilov quit (Remote host closed the connection) 2016-08-19T19:33:05Z nzambe joined #sbcl 2016-08-19T20:09:52Z sjl joined #sbcl 2016-08-19T20:13:00Z jdz quit (Ping timeout: 258 seconds) 2016-08-19T20:19:01Z jdz joined #sbcl 2016-08-19T20:31:53Z milanj quit (Quit: This computer has gone to sleep) 2016-08-19T20:38:48Z slyrus joined #sbcl 2016-08-19T21:07:46Z attila_lendvai joined #sbcl 2016-08-19T21:30:34Z DavidGu joined #sbcl 2016-08-19T21:38:00Z ASau joined #sbcl 2016-08-19T21:51:31Z shka_ quit (Ping timeout: 258 seconds) 2016-08-19T21:51:31Z gingerale quit (Read error: Connection reset by peer) 2016-08-19T22:01:52Z DavidGu quit (Ping timeout: 240 seconds) 2016-08-19T22:02:27Z edgar-rft quit (Quit: edgar-rft) 2016-08-19T22:08:34Z attila_lendvai quit (Ping timeout: 260 seconds) 2016-08-19T22:42:31Z DavidGu joined #sbcl 2016-08-19T22:53:15Z DeadTrickster quit (Ping timeout: 264 seconds) 2016-08-19T22:57:27Z DavidGu quit (Ping timeout: 264 seconds) 2016-08-19T23:23:09Z slyrus quit (Ping timeout: 276 seconds) 2016-08-19T23:39:30Z Quadrescence quit (Ping timeout: 250 seconds) 2016-08-19T23:50:09Z Quadrescence joined #sbcl