Re: firefox17 dumps xulrunner.core but still works

2014-02-19 Thread herbert langhans
From: David Lord net...@lordynet.org [140218 22:21] On 18 Feb 2014 at 16:26, herbert langhans wrote: Hi List, I have set up a Thinkpad T42, NetBSD 5.2.2 and its almost finished now. One annoying thing happens. The /www/firefox17 - compiled from pkgsrc -

Re: the future of ALTQ

2014-02-19 Thread Manuel Bouyer
On Tue, Feb 18, 2014 at 10:28:01AM -0500, Greg Troxel wrote: Is anyone else using ALTQ? I am wondering if there are alternatives, or if fixing altq to be more locking/mp-aware is a good plan (as part of the general effort in the network stack). It seems our copy of pf is getting a bit

Re: Scanning and printing on USB printer/scanner combination

2014-02-19 Thread Brett Lymn
On Tue, Feb 18, 2014 at 11:05:11PM +0100, Moritz Wilhelmy wrote: I just tried that, but according to the sane-usb(5) manpages, SANE uses libusb on /dev/ugen* for USB access, however dmesg does not list any devices that would be attached to the ugen driver. Is it possible to disable ulpt0 in

Re: [Haskell-cafe] Rewrite NetBSD kernel driver using Ajhc Haskell compiler

2014-02-19 Thread amindfv
Nice!! Tom El Feb 19, 2014, a las 0:39, Kiwamu Okabe kiw...@debian.or.jp escribió: Hi all, NetBSD kernel's HD Audio sound driver has interrupt handler. The interrupt handler of the demo is re-written by Haskell language using Ajhc Haskell Compiler http://ajhc.metasepi.org/. Demo movie

Re: [Haskell-cafe] Rewrite NetBSD kernel driver using Ajhc Haskell compiler

2014-02-19 Thread Kiwamu Okabe
Hi Johnny, On Wed, Feb 19, 2014 at 11:57 PM, Johnny Billquist b...@update.uu.se wrote: Maybe someone with more insight could explain to an idiot like me how Haskell garbage collection is handled when running in the kernel? First, s_alloc() is Ajhc Haskell compiler's allocator, and

Re: NetBSD 6 on Thinkpad Edge 11 - keyboard problem

2014-02-19 Thread Thomas Merkel
Hello, yea, i've found a solution for my keyboard issue on the Thinkpad Edge. I've disabled the following option in the BIOS: - USB BIOS Support - Always On USB Best regards, Thomas Am 18.02.2014 um 17:02 schrieb Thomas Merkel t...@core.io: Hello again, i would also like to share the

Re: [Haskell-cafe] Rewrite NetBSD kernel driver using Ajhc Haskell compiler

2014-02-19 Thread Kiwamu Okabe
Hi Johnny, I had forgotten important point. On Wed, Feb 19, 2014 at 11:57 PM, Johnny Billquist b...@update.uu.se wrote: Maybe someone with more insight could explain to an idiot like me how Haskell garbage collection is handled when running in the kernel? Running a simple logic in the kernel,

Re: Scanning and printing on USB printer/scanner combination

2014-02-19 Thread Moritz Wilhelmy
On Wed, Feb 19, 2014 at 20:05:21 +1030, Brett Lymn wrote: On Tue, Feb 18, 2014 at 11:05:11PM +0100, Moritz Wilhelmy wrote: I just tried that, but according to the sane-usb(5) manpages, SANE uses libusb on /dev/ugen* for USB access, however dmesg does not list any devices that would be

Re: [Haskell-cafe] Rewrite NetBSD kernel driver using Ajhc Haskell compiler

2014-02-19 Thread Mike Meyer
On Wed, Feb 19, 2014 at 9:30 AM, Kiwamu Okabe kiw...@debian.or.jp wrote: Hi Johnny, I had forgotten important point. On Wed, Feb 19, 2014 at 11:57 PM, Johnny Billquist b...@update.uu.se wrote: Maybe someone with more insight could explain to an idiot like me how Haskell garbage collection

Re: [Haskell-cafe] Rewrite NetBSD kernel driver using Ajhc Haskell compiler

2014-02-19 Thread Kiwamu Okabe
Hi Mike, On Thu, Feb 20, 2014 at 8:34 AM, Mike Meyer m...@mired.org wrote: Running a simple logic in the kernel, it doesn't call GC. Having looked over the source, I couldn't get much of a feel for it - it mostly seemed to be FFI type declarations. Which does make sense since the goal is to