Check this out! You could win Billions of US$ dollars! From LottoBASH! 6568 [1/2]

2000-08-30 Thread info
The newest and largest online global lottery is about to begin selling tickets! This lottery has the potential to be the first lottery in history to reach a ONE BILLION DOLLAR jackpot... It is LOTTOBASH! Tickets are only 1 US$ and there is no minimum to buy. And best of all, when you win you g

Check this out! You could win Billions of US$ dollars! From LottoBASH! 6568 [2/2]

2000-08-30 Thread info
begin 644 bash.jpg M_]C_X``02D9)1@`!`@$`2`!(``#_[0FZ4&AO=&]S:&]P(#,N,``X0DE-`^T` M`!``2`$``0!(`0`!.$))300-```$>#A"24T#\P`` M"```.$))300*```!```X0DE-)QH``0`` M```".$))30/U``!(`"]F9@`!`&QF9@`&```!`"]F9@`!`*&9F@`& M```!`#(!`%H&``

[C++] static data members, gdb problems with

2000-08-30 Thread Benjamin Kosnik
I'm having some problems with static data members and gdb. (This would be current sourceware GDB, via the 'src' repository on RH 6.2/x86) To get the ball rolling, I've made a simple test case: struct __ios_flags { typedef short __int_type; static const __int_type _S_boolalpha = 1

Re: [C++] static data members, gdb problems with

2000-08-30 Thread Daniel Berlin
Not our fault, the debug info is wrong, or it really is optimized out. It doesn't give us either a bit offset, or the data member location inside the struct, or a place where we can find them. So GDB, rightfully, assumed it's optimized out (because it has no location, and thus, doesn't exist). It

Re: [C++] static data members, gdb problems with

2000-08-30 Thread Andrew Cagney
Daniel Berlin wrote: > > Not our fault, the debug info is wrong, or it really is optimized out. > It doesn't give us either a bit offset, or the data member location inside > the struct, or a place where we can find them. > So GDB, rightfully, assumed it's optimized out (because it has no > locat

Re: [C++] static data members, gdb problems with

2000-08-30 Thread Daniel Berlin
On Thu, 31 Aug 2000, Andrew Cagney wrote: > > Just BTW, if the debug info is corrupt then GDB should report an error() > and not an internal_error(). Internal errors are more for when gdb's > internal data structures turn out to be broken (and about to core dump > :-). > > enjoy, >