POV-Ray : Newsgroups : povray.off-topic : Apparently... Server Time
1 Oct 2024 11:27:20 EDT (-0400)
  Apparently... (Message 11 to 20 of 21)  
<<< Previous 10 Messages Goto Latest 10 Messages Next 1 Messages >>>
From: Orchid XP v8
Subject: Re: Apparently...
Date: 19 Apr 2008 16:04:03
Message: <480a5033@news.povray.org>
>> Interesting. And how do you account for the fact that the USB device 
>> could be connected to any possible computer architecture, running any 
>> possible OS?
> 
> The same way you account for a CD that can boot on multiple 
> architectures.

Really? I wasn't aware that it's possible to do that either...

> I imagine if the driver for your OS isn't on the "usb 
> disk drive", then you need to get it somewhere else.

Fair enough...

-- 
http://blog.orphi.me.uk/
http://www.zazzle.com/MathematicalOrchid*


Post a reply to this message

From: Gail Shaw
Subject: Re: Apparently...
Date: 19 Apr 2008 16:38:44
Message: <480a5854@news.povray.org>
"Darren New" <dne### [at] sanrrcom> wrote in message
news:480a144b@news.povray.org...
> Tim Cook wrote:
> > ....PnP device drivers are programmed into the device themselves, not
> > bundled as generic packages with windows
>
> This is actually true for some types of USB devices.

My laptop 3G modem does this too. Windows initially sees it as a CDRom, with
the installation program on it.


Post a reply to this message

From: Darren New
Subject: Re: Apparently...
Date: 19 Apr 2008 18:18:17
Message: <480a6fa9@news.povray.org>
Gail Shaw wrote:
> My laptop 3G modem does this too. Windows initially sees it as a CDRom, with
> the installation program on it.

Then there's the old Atari 800 modem, which looked for ten consecutive 
failed requests to read the boot sector off the floppy drive and on the 
eleventh try said "Oh! Me! Here I am!" and proceeded to install the 
drivers. :-)

-- 
   Darren New / San Diego, CA, USA (PST)
     "That's pretty. Where's that?"
          "It's the Age of Channelwood."
     "We should go there on vacation some time."


Post a reply to this message

From: Halbert
Subject: Re: Apparently...
Date: 19 Apr 2008 22:16:53
Message: <480aa795@news.povray.org>
I've had occasion to look at MS Windows binaries and I have never seen 
anything resembling a comment from the source. When I think about it, I 
wonder how one would intentionaly preserve their comments in a compiled 
binary. Their may be a way, but I don't know about it. I would guess it 
would have to be a compiler switch I've never used.
On the other hand, I have seen source code from MS Windows in it's original 
form before and seen some very bad programming habits. (Such as the use of 
goto in source written in C)
--


Post a reply to this message

From: Darren New
Subject: Re: Apparently...
Date: 20 Apr 2008 12:21:45
Message: <480b6d99$1@news.povray.org>
Halbert wrote:
> When I think about it, I 
> wonder how one would intentionaly preserve their comments in a compiled 
> binary. 

I'm wondering if whoever invented this idea might have been thinking of 
things like in the .NET compiled objects where it might be storing 
java-doc-like descriptions of the interface routines in the binaries. 
Technically, comments from the source, but not really what a programmer 
would think of as "comments from the source."  That, module attributes 
(for run-time reflection, whatever they're called in .NET), debugging 
symbols, etc?

-- 
   Darren New / San Diego, CA, USA (PST)
     "That's pretty. Where's that?"
          "It's the Age of Channelwood."
     "We should go there on vacation some time."


Post a reply to this message

From: Chambers
Subject: Re: Apparently...
Date: 20 Apr 2008 15:00:21
Message: <480b92c5$1@news.povray.org>
Darren New wrote:
> Halbert wrote:
>> When I think about it, I wonder how one would intentionaly preserve 
>> their comments in a compiled binary. 
> 
> I'm wondering if whoever invented this idea might have been thinking of 
> things like in the .NET compiled objects where it might be storing 
> java-doc-like descriptions of the interface routines in the binaries. 
> Technically, comments from the source, but not really what a programmer 
> would think of as "comments from the source."  That, module attributes 
> (for run-time reflection, whatever they're called in .NET), debugging 
> symbols, etc?
> 

More than likely debugging symbols, and they just didn't understand what 
those are.

-- 
...Ben Chambers
www.pacificwebguy.com


Post a reply to this message

From: Gail Shaw
Subject: Re: Apparently...
Date: 20 Apr 2008 16:32:16
Message: <480ba850@news.povray.org>
"Chambers" <ben### [at] pacificwebguycom> wrote in message
news:480b92c5$1@news.povray.org...
>
> More than likely debugging symbols, and they just didn't understand what
> those are.

Except, AFAIK, the symbols aren't included in any MS program. If you want
the debugging symbols, you have to download them seperatly.


Post a reply to this message

From: Nicolas Alvarez
Subject: Re: Apparently...
Date: 20 Apr 2008 16:38:30
Message: <480ba9c6@news.povray.org>
Gail Shaw escribió:
> "Chambers" <ben### [at] pacificwebguycom> wrote
>> More than likely debugging symbols, and they just didn't understand what
>> those are.
> 
> Except, AFAIK, the symbols aren't included in any MS program. If you want
> the debugging symbols, you have to download them seperatly.

Windows never defined a way to include debugging symbols inside the 
executable. It's always in separate .pdb files.

If you compile Windows programs with gcc, with debugging symbols 
enabled, they end up inside the .exe like on Linux, and gdb works on 
them; but it's incompatible with MSVC debugger. And viceversa; gdb 
doesn't understand .pdb symbol files.


Post a reply to this message

From: Darren New
Subject: Re: Apparently...
Date: 20 Apr 2008 17:50:27
Message: <480bbaa3$1@news.povray.org>
Gail Shaw wrote:
> Except, AFAIK, the symbols aren't included in any MS program. If you want
> the debugging symbols, you have to download them seperatly.

Except they're technically not "debugging symbols" in DLLs and .NET 
stuff, since you dynamically link them. They're entry points for the 
linking loader, not for the debugger.

-- 
   Darren New / San Diego, CA, USA (PST)
     "That's pretty. Where's that?"
          "It's the Age of Channelwood."
     "We should go there on vacation some time."


Post a reply to this message

From: Phil Cook
Subject: Re: Apparently...
Date: 21 Apr 2008 11:12:25
Message: <op.t9yu7obqc3xi7v@news.povray.org>
And lo on Sat, 19 Apr 2008 16:53:31 +0100, Tim Cook <z99### [at] gmailcom>  
did spake, saying:

> those .cab files windows hoards aren't full of drivers for 50,000  
> flavours of hardware.

Should have told him that cabs always come with drivers and that's how  
Windows moves its files around using the GetTaxi call.

-- 
Phil Cook

--
I once tried to be apathetic, but I just couldn't be bothered
http://flipc.blogspot.com


Post a reply to this message

<<< Previous 10 Messages Goto Latest 10 Messages Next 1 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.