RE: Program exited with code 0303000 - SOLVED

2004-10-18 Thread Dan Osborne
tarted to look at dumper.exe - If I don't > run the prog in gdb then instead of "Program exited with code > 0303000" I get ... > > Aborted (core dumped) > > Presumably because of the uncaught exception, despite a catch (...) > in my main. Ahem, the catch (...)

RE: Program exited with code 0303000

2004-09-30 Thread Dan Osborne
run the prog in gdb then instead of "Program exited with code 0303000" I get ... Aborted (core dumped) Presumably because of the uncaught exception, despite a catch (...) in my main. My main is mostly this ... try { char* s = strclone( cfg.getString( "FIRST_SCREEN"

RE: Program exited with code 0303000

2004-09-28 Thread Dan Osborne
> Um. Bizarre. You did build with -g and -O0, didn't you? Is > this an actual > function call here, or does add_var turn out to be some kind of > macro or something > that otherwise gets inlined? Well I was actually using -ggdb3 but I tried -g -O0 and it made no difference. I think the add_va

RE: Program exited with code 0303000

2004-09-28 Thread Dave Korn
3608 > 3608 add_var(i,var,in_out,apl_tab_size); You didn't say what function that catch instruction is actually in: is it in the function that calls add_var, or is it in add_var and add_var has been inlined at this point? In any case, it certainly seems to be in the right place,

RE: Program exited with code 0303000

2004-09-28 Thread Dan Osborne
} and if I step on throw the debugger thinks I'm at ... gues which line?! yes, line 3608 of otlv4.h ... (gdb) s 0x1003b115 in __cxa_rethrow () at otlv4.h:3608 3608 add_var(i,var,in_out,apl_tab_size); and if I step again I get ... Program exited with code 0303000. So I'm

RE: Program exited with code 0303000

2004-09-28 Thread Dave Korn
> -Original Message- > From: cygwin-owner On Behalf Of Bobby McNulty > Sent: 28 September 2004 03:45 > To: Cliff Hones > Cc: cygwin > Subject: Re: Program exited with code 0303000 > > Cliff Hones wrote: > > > Dave Korn wrote: > > > > > &

Re: Program exited with code 0303000

2004-09-27 Thread Bobby McNulty
Cliff Hones wrote: Dave Korn wrote: Bobby, your advice is going from bad to worse. Nothing you have said is right, and you keep on repeating things that you have already been told don't work. You don't accurately read the things that are in front of your face before you reply. THAT'S WHY I'M G

RE: Program exited with code 0303000

2004-09-27 Thread Igor Pechtchanski
On Tue, 28 Sep 2004, Cliff Hones wrote: > Dave Korn wrote: > > > Bobby, your advice is going from bad to worse. Nothing you have said is > > right, and you keep on repeating things that you have already been told > > don't work. You don't accurately read the things that are in front of your >

Re: Program exited with code 0303000

2004-09-27 Thread Cliff Hones
Dave Korn wrote: > Bobby, your advice is going from bad to worse. Nothing you have said is > right, and you keep on repeating things that you have already been told > don't work. You don't accurately read the things that are in front of your > face before you reply. THAT'S WHY I'M GOING TO BE

RE: Program exited with code 0303000

2004-09-27 Thread Dave Korn
> -Original Message- > From: Bobby McNulty > Sent: 27 September 2004 19:33 > To: Dave Korn > David, his problem is Oracle. > odbc.dll. > He needs the old one. By "he needs the old one", do you mean "he needs to use the static link library instead of the DLL he made from it using libtoo

Program exited with code 0303000

2004-09-25 Thread Dan Osborne
I'm getting the above error message (with gdb) in my linux ported application and wonder if anyone can help in how to get to the bottom of it. I've upgraded to the latest versions today but with no change (except I don't now get a stackdump file). Things were fine with Oracle OCI calls but I have