Job security??

2002-03-21 Thread d3245
Easy 50-80% Return and here's how. Learn how you can receive a monthly check for 6, 7, or 8% a month until your initial investment is paid off...then a monthly check for 4% for years to come... We know it sounds impossible, but it's happening today and here's where. In the merchant busines

Re: C-struct dismantling tool...

2002-03-21 Thread Garance A Drosihn
At 12:57 PM -0800 3/21/02, Julian Elischer wrote: >On Thu, 21 Mar 2002, John Polstra wrote: > >> >> I thought about the .stabs approach too, and thought it seemed > > promising. Even better might be to use -gdwarf -g3, which in > > theory at least would provide information about #defines. > >

Re: How to correctly detect POSIX 1003.1b features on FreeBSD?

2002-03-21 Thread Scott Mitchell
On Tue, Mar 12, 2002 at 09:40:07PM -0500, Craig Rodrigues wrote: > > I am a contributor to ACE, a cross-platform C++ library > for doing systems programming: http://www.cs.wustl.edu/~schmidt/ACE.html. > My intent is to fix the macros in ACE which define the > configuration on FreeBSD (all FreeBSD

Re: a 250Meg ramdisk

2002-03-21 Thread Terry Lambert
mwest wrote: > Would anyone know if how to pre-load modules of type `md_image' is > documented anywhere? > > I'm trying to create a 250Meg ramdisk , but have only managed one of 10 > Meg so far . > > So far what I can surmise is that it has to be done in loader.conf: > > 1) Setting [mfs_load=

Re: C-struct dismantling tool...

2002-03-21 Thread Julian Elischer
On Thu, 21 Mar 2002, John Polstra wrote: > > I thought about the .stabs approach too, and thought it seemed > promising. Even better might be to use -gdwarf -g3, which in theory > at least would provide information about #defines. > > For well-behaved structs, it's possible that rpcgen could

a 250Meg ramdisk

2002-03-21 Thread mwest
Hi, Would anyone know if how to pre-load modules of type `md_image' is documented anywhere? I'm trying to create a 250Meg ramdisk , but have only managed one of 10 Meg so far . So far what I can surmise is that it has to be done in loader.conf: 1) Setting [mfs_load="NO"] to YES 2) Somehow

Re: C-struct dismantling tool...

2002-03-21 Thread John Polstra
In article <[EMAIL PROTECTED]>, Poul-Henning Kamp <[EMAIL PROTECTED]> wrote: > > Does anyone know of an existing tool which for a given C struct > can output a list of elements, their types, size and byteoffset ? No, but I'd like one too -- one that can handle the files in /usr/include with all

Re: Debugging BTX Faults

2002-03-21 Thread John Baldwin
On 20-Mar-2002 Hiten Pandya wrote: > On 20-Mar-2002 Hiten Pandya wrote: >> Hi all, >> > How does one debug faults in the BTX Loader? I am currently trying >> to work on PR i386/21559, and after reading jhb's document on the >> loading process, I was curious to know.. > >> Well, you need to be f

C-struct dismantling tool...

2002-03-21 Thread Poul-Henning Kamp
Does anyone know of an existing tool which for a given C struct can output a list of elements, their types, size and byteoffset ? I have considered parsing the information out of .stabs records from "gcc -g" output, but if an existing tool already exists that would save me quite some time. --