Slashdot Log In
BSOD Makes Appearance at Olympic Opening Ceremonies
Posted by
CmdrTaco
on Tue Aug 12, 2008 09:23 AM
from the beacuse-its-august dept.
from the beacuse-its-august dept.
Whiteox writes "A BSOD was projected onto the roof of the National Stadium during the grand finale to the four-hour spectacular at the Olympics. Lenovo chairman Yang Yuanqing chose to go with XP instead of Vista because of the complexity of the IT functions at the Games. His comment on Vista? 'If it's not stable, it could have some problems,' he said. Evidently Bill Gates attended the opening ceremony, so he must have witnessed it."
Related Stories
This discussion has been archived.
No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Full
Abbreviated
Hidden
Loading... please wait.
well (Score:5, Funny)
They paid 40 billion for that ceremony. I can't see this improving their opinion of Microsoft much.
Re:well (Score:5, Funny)
But was it a pirated copy of Windows?
Parent
Re:well (Score:5, Funny)
Parent
Re:well (Score:5, Funny)
Perhaps it was shanghaid.
Parent
Re:well (Score:5, Funny)
It's the Chinese Olympics. What do you think?
Actually, the reality is just as funny:
When you can't or don't need to "embrace, extend, and extinguish", sponsor!
My own opinion is that not anticipating a blue screen is like attending a Budweiser-sponsored sporting event and expecting to get real beer.
Parent
obvious justification: brand identity (Score:5, Funny)
...after all, if it had just done its job flawlessly there'd be no way for the crowd to know it was a microsoft product.
Parent
Re:well (Score:5, Insightful)
In fairness to Microsoft, blue screens are normally due to bad hardware drivers. Whatever that thing actually was, it certainly wasn't a normal monitor and I'll bet the drivers are rather specific. And the less people use them, the fewer bugs are found.
Cheers,
Ian
Parent
Re:well (Score:5, Funny)
That's no excuse. No installation of Linux has ever crashed in the history of the universe. Microsoft should be held to no less a standard.
Parent
Re:well (Score:5, Funny)
A Linux installation crashes if and only if it doesn't respect it's user.
Parent
Re:well (Score:5, Funny)
next thing you'll be telling me BSD never gets hacked unless it's playing a prank on it's admin.
Parent
Re:well (Score:5, Funny)
next thing you'll be telling me BSD never gets hacked unless it's playing a prank on it's admin.
BSD never gets hacked unless it's playing a prank on it's admin.
Parent
Re:well (Score:5, Funny)
Macs only crash when you use the grammatically incorrect version of i
Parent
Re:well (Score:5, Funny)
exactly I hate this crap from Microsoft. It should be able to do like Linux and when there's a hardware problem it just reroutes power through the main deflector to fix it.
Parent
Re:well (Score:5, Funny)
What are you, some kind of shill?
Parent
Re:In fairness to software engineering (Score:5, Insightful)
Jeez. MS apologists always trot out that one. Making bad engineering acceptable will probably be Bill Gates [amazon.com]' largest "contribution" to society.
In fairness to software engineering, if the "bad" hardware driver can crash the system, then the system is not ready for production and has more than a few show-stopping (no pun intended) bugs. Take a look at basic kernel or micro-kernel design principles and stop spreading the view that catastrophically bad design is acceptable.
Linux puts most drivers in the kernel and a bad driver there can cause a panic, bringing the system down.
Most of the BSDs, AFAIK, have some drivers in the kernel and others in userland processes.
I'm not sure how it's architected in Mac OS X, but I've certainly seen kernel panics on my Mac Mini.
There may be an embedded OS which is less susceptible to being killed by a poor driver, but for something like this you probably wouldn't bother with an embedded OS because there's so much more in the way of off-the-shelf software available to do the job for Windows and Linux.
Parent
Re:In fairness to software engineering (Score:5, Interesting)
As somebody who has written a bad device driver for Mac OSX I can confirm that a bad driver can and frequently has crashed my OS X kernel.
OS X is based on a microkernel, but in practice it is as monolithic as Linux or BSD.
Parent
Re:In fairness to software engineering (Score:5, Informative)
Parent
Re:In fairness to software engineering (Score:5, Insightful)
I'm sorry, do you know of an operating system where talking to hardware cannot cause a panic? Even microkernels such as Mach are prone to these problems. ANY time you touch hardware there can be a problem if it's coded wrong. Even microkernels have to allow DMA for certain hardware, and bad DMA can bring down a whole system without even trying. There's a basic design flaw in how normal computers operate that requires this sort of behavior from kernels, which leads to bad drivers affecting them. If you can name one system ready for general purpose for which this isn't true I would love to hear about it.
Parent
Re:In fairness to software engineering (Score:5, Funny)
There's a basic design flaw in how normal computers operate that requires this sort of behavior from kernels, which leads to bad drivers affecting them. If you can name one system ready for general purpose for which this isn't true I would love to hear about it.
GNU Hurd
Parent
Re:In fairness to software engineering (Score:5, Funny)
So, unlikely to have been seen on slashdot before then?
Parent
Re:In fairness to software engineering (Score:5, Informative)
and now, with Vista, display drivers are back to being in user-mode [microsoft.com]:
At a technical level, WDDM display drivers have two components, a kernel mode driver (KMD) that is very streamlined, and a user-mode driver that does most of the intense computations. With this model, most of the code is moved out of kernel mode. That is, the kernel mode piece is now solely responsible for lower-level functionality and the user mode piece takes on heavier functionality such as facilitating the translation from higher-level API constructs to direct GPU commands while maintaining application compatibility. This greatly reduces the chance of a fatal blue screen and most graphics driver-related problems result in at worst one application being affected.
Parent
Re:well (Score:5, Informative)
Just a heads-up... the ROC initials usually refer to the Republic of China, which is the government in control of Taiwan. The Chinese mainland is controlled by the People's Republic of China, initials PRC. This is a really, really big distiction.
Parent
Re:well (Score:5, Funny)
Parent
Re:well (Score:5, Funny)
And you feel that this is one of those instances?
Parent
Re:What's their motivation.... (Score:5, Funny)
Good point, Windows should identify the offending driver, read it's manufacturer info, then shame the creator on the BSoD.
"A fatal exception has occurred because CheapHardware's Crappy802.11g device driver was written by mildly retarded gibbons."
Parent
Re:What's their motivation.... (Score:5, Informative)
This has actually been proposed a number of times (without the personal attacks), but rejected for two reasons:
The latter problem is more important. Problem is, kernel mode code can do *anything*, including write to other modules' memory space. So if a driver "baddisplay.sys" accidentally wrote to an uninitialized pointer that just happened to point to the memory space of "goodprinter.sys", but didn't fail as a result (remember, no real memory protection in kernel mode), and "goodprinter.sys" later reads the screwed up memory and fails, it will look like a problem in "goodprinter.sys", even though "goodprinter.sys" behaved correctly (dying when faced with an irrecoverable error).
This is why the "Problem Reports and Solutions" only provides information after conferring with MS. When it gives you an answer, it's because someone at MS took a look at your crash dump (or someone else's dump which exhibited the same problem), figured out the actual cause of the crash, and linked the crash and solution together. If it blamed the module automatically, you'd spend time harassing a perfectly innocent printer manufacturer, and MS would need to hire even more lawyers.
(Disclaimer: Former MS employee, this is only what I was told)
Parent
Re:well (Score:5, Insightful)
Be realistic for a second please, you think on show as grand as the opening ceremonies only had one glitch? Seriously?
There is no such thing as a show this big without multiple (read a lot) of glitches. They are covered up well, quickly fixed, or not noticed, but they are there. This one was just in the open for everyone to see.
Parent
Re:well (Score:5, Interesting)
>They are covered up well, quickly fixed, or not noticed, but they are there
I learned this when I saw a circus fire and noticed that the clowns put the fire out while making it look like part of the act. It was both comforting and frightening at the same time.
Parent
That was on Stadium... (Score:5, Funny)
Here's a game (Score:5, Funny)
Re:Here's a game (Score:5, Informative)
Better pic here [livefilestore.com]. Perhaps Lenovo should have used Red Flag Linux [wikipedia.org] for this mission-critical application?
Parent
Might as well get used to it (Score:5, Interesting)
Visible computer glitches pop up in the most unexpected places these days. I went to a 25th anniversay screening of Wargames at a local theater recently. I wasn't even aware that I was in a digital theater until about halfway through the movie their server lost connection to the host and the movie theater screen suddenly turned into a giant Windows desktop. It was a little unnerving (I had thought I was looking at an actual film).
I think it's something we will just get used to seeing in this increasingly digital age. I just hope I'm not driving down the street one day and see a "lost connection to server" message flashing on a stoplight.
Re:Might as well get used to it (Score:5, Funny)
That would totally freak me out.
Parent
Eh, so what? (Score:5, Insightful)
All computers crash - I've made Linux, BSD, OSX, and Solaris machines kernel panic. Hell, I've witnessed a newer zSeries mainframe crash.
The fact that it happened at an inopportune moment is unfortunate, but that's life.
Re:Eh, so what? (Score:5, Funny)
Actually, a zSeries mainframe crashing at an opportune moment would be more remarkable than it crashing at an inopportune one.
Parent
Re:Eh, so what? (Score:5, Funny)
"All computers crash - I've made Linux, BSD, OSX, and Solaris machines kernel panic. Hell, I've witnessed a newer zSeries mainframe crash."
And you seem so proud of that. The goal is to make the systems function, not crash.
Parent
Re:Eh, so what? (Score:5, Funny)
Not if you are in QA/testing...
Parent
Re:Eh, so what? (Score:5, Funny)
Honestly, they should just make it a black screen with some fireworks and a "Congratulations, You Crashed Windows Again!". You know, make it a more positive experience for the user.
Parent
Re:Eh, so what? (Score:5, Funny)
All computers crash - I've made Linux, BSD, OSX, and Solaris machines kernel panic. Hell, I've witnessed a newer zSeries mainframe crash.
You are not invited into my house anymore.
Parent
omg! Proof! (Score:5, Funny)
We're living in the Matrix! And the Matrix runs Windows!
No wonder my life is a pile of shit. :)
Re:omg! Proof! (Score:5, Funny)
You are about to bend a spoon.
Cancel or Allow?
Parent
Re:omg! Proof! (Score:5, Funny)
Abort,Retry,Fail
Parent
Faked (Score:5, Interesting)
BSOD? Big deal! (Score:5, Insightful)
BSOD was CGI! (Score:5, Funny)
DL3 media server failure (Score:5, Informative)
I believe most of the projections were handled by HighEnd Systems DL2s and DL3s. Essentially a projector on a moving yoke, with a few extra features. Each DL2 or DL3 has its own built-in media server running Win XP Embedded.
Even if the built-in media server fell over (which is what this looked like), there is still DMX control over the unit. Pan, tilt, focus and more importantly beam blanking and projector power are still controllable. It would have been easy to shut the faulty unit down and still carry on with the show (and yes, I do work with this kind of gear).
On this scale of event, they would have had multiple operators dedicated to watching over particular areas in case of such a fault. It looks like someone wasn't paying attention.
Re:Oh, stop it! (Score:5, Funny)
You're talking about BillG's asscheek, right? : p
Parent
Re:Oh, stop it! (Score:5, Funny)
Ah! Keeping it in mint condition, I see.
Parent
Re:Bill was there? (Score:5, Funny)
Parent
Re:Doesnt look like a BSOD... (Score:5, Funny)
I pay Apple alot of money to ensure no BSODs.
No, you pay them a lot of money for "ooh shiney".
Parent