Re: lpt module

2004-06-13 Thread Eric Jacobs
On Sat, 12 Jun 2004 18:46:17 +0200 sebastian ssmoller <[EMAIL PROTECTED]> wrote: > > so i decided to play around a bit with the lpt module. first thing i > noticed when compiled lpt as module is: i cannot unload it (kldunload > says: device not configured). somewhere in the net i read that this

Re: lpt module

2004-06-12 Thread Eric Jacobs
On Sat, 12 Jun 2004 18:46:17 +0200 sebastian ssmoller <[EMAIL PROTECTED]> wrote: > > so i decided to play around a bit with the lpt module. first thing i > noticed when compiled lpt as module is: i cannot unload it (kldunload > says: device not configured). somewhere in the net i read that this

Re: Extracting symbol info out of processes at runtime

2004-04-30 Thread Eric Jacobs
On Thu, 29 Apr 2004 14:51:47 +0200 "P. de Boer" <[EMAIL PROTECTED]> wrote: > > On Thu, 2004-04-29 at 14:30, Dag-Erling Smørgrav wrote: > > "P. de Boer" <[EMAIL PROTECTED]> writes: > > > For a little private project I'm working at, I need to find the address > > > of a function which is inside a s

Re: Extracting symbol info out of processes at runtime

2004-04-29 Thread Eric Jacobs
On Thu, 29 Apr 2004 14:51:47 +0200 "P. de Boer" <[EMAIL PROTECTED]> wrote: > > On Thu, 2004-04-29 at 14:30, Dag-Erling Smørgrav wrote: > > "P. de Boer" <[EMAIL PROTECTED]> writes: > > > For a little private project I'm working at, I need to find the address > > > of a function which is inside a s

Re: gcc object format -> need motorola s-records.

2003-10-08 Thread Eric Jacobs
On Wed, 8 Oct 2003 22:52:10 +0100 Josef Karthauser <[EMAIL PROTECTED]> wrote: > Does anyone know how to control the type of output files that gcc > creates? I need to generate motorola S-records instead of ELF files, > but I can't find a switch to make this happen. Do I need to build a new > com

Re: How to get a device_t

2003-08-12 Thread Eric Jacobs
On Wed, 6 Aug 2003 13:00:13 +0200 Bernd Walter <[EMAIL PROTECTED]> wrote: > > Back to the original question: > How do I get the device_t from nexus? > Is there a get_nexus() function somewhere? You can do it this way: devclass_t nexusdc = devclass_find("nexus"); device_t nexus = devclass_get_de

Re: Race in kevent

2003-07-09 Thread Eric Jacobs
On Wed, 9 Jul 2003 15:28:38 +0200 (CEST) Harti Brandt <[EMAIL PROTECTED]> wrote: > Hi, > > I just had a crash while typing ^C to a program that has a kevent timer > running. The crash was: > > callout_stop > callout_reset > filt_timerexpire > softclock > > and callout_stop was accessing freed m

Re: mount USB storage device

2003-07-08 Thread Eric Jacobs
On Wed, 9 Jul 2003 09:28:54 +1000 "Jennifer" <[EMAIL PROTECTED]> wrote: > > But the console shows: > > da0:( umass-sim0:0:0:0):READ(06),cbd:800010 > da0:( umass-sim0:0:0:0):ILLEGAL REQUEST ASC:20,0 > da0:( umass-sim0:0:0:0):Invalid command operation code > da0:reading primary partition table:err

PATCH: move cardbus container to "pci" devclass

2003-06-25 Thread Eric Jacobs
Hello I have made a patch for -CURRENT and 5.1-RELEASE that hopefully improves the support for Cardbus devices by changing the "cardbus" driver to implement the "pci" devclass rather than the "cardbus" devclass, and to make their unit numbers correspond with the PCI secondary bus numbers that thei

timeout(9), mutexes, and races

2003-06-18 Thread Eric Jacobs
The other day, I had a panic with my 5.1-RELEASE kernel when I removed my Cardbus NIC (3Com 3c575B Fast Etherlink XL, using the xl driver.) The traceback indicated a pretty uninteresting race between a timeout routine (xl_stats_update) and the card being detached. xl_stats_update was being called

Re: floppy.. Was: Drawing graphics on terminal

2003-06-16 Thread Eric Jacobs
On Mon, 16 Jun 2003 15:38:06 -0500 Juli Mallett <[EMAIL PROTECTED]> wrote: > 1) Network install. > The floppy could include only network (and requisite) drivers, > such that mass storage drivers could be pulled over the net at > an early stage in the install. Ideally we would wo

Re: Drawing graphics on terminal

2003-06-16 Thread Eric Jacobs
On Mon, 16 Jun 2003 20:15:06 +0200 Nakal <[EMAIL PROTECTED]> wrote: > Hi, > > recently, I found vidcontrol and played a bit with it. I have been > looking for documents about how to output pixels (graphics) on the > terminal. See /usr/share/examples/libvgl > I could not find any. Before I giv

Re: kqueue alternative?

2003-06-16 Thread Eric Jacobs
On Mon, 16 Jun 2003 10:11:10 -0700 Joshua Oreman <[EMAIL PROTECTED]> wrote: > On Mon, Jun 16, 2003 at 11:44:15AM +0100 or thereabouts, Tony Finch seemed to write: > > > > Select doesn't work with files. > > Really? `man 2 select' says nothing about that. It just talks about > 'file descriptors'.