Slashdot Mirror


Ctrl-Alt-Del Inventor To Retire From IBM

wherley writes "AP reports that IBM'er David Bradley, who came up with the (in)famous Ctrl-Alt-Delete key combination, is retiring. The article mentions: 'At a 20-year celebration for the IBM PC, Bradley was on a panel with Microsoft founder Bill Gates and other tech icons. The discussion turned to the keys. 'I may have invented it, but Bill made it famous,' Bradley said. Gates didn't laugh. The key combination also is used when software, such as Microsoft's Windows operating system, fails'." We featured a story on Bradley a few months back.

11 of 459 comments (clear)

  1. ... then hit Ctrl-Alt-Backspace to restart X. by lunar_legacy · · Score: 5, Interesting

    And who is the inventor of Ctrl-Alt-Backspace?

  2. NT used it for logging on. by Rolman · · Score: 4, Interesting

    I remember Dave Cutler (the man in charge of WindowsNT, also the main VMS developer for DEC), when asked on why did MS use the CTRL-ALT-DEL keyboard combination to log on an NT machine, he said something like: "this combination is sure to be never used by any application". This was taking advantage of the tradition of using it to reboot the computer as everything in the DOS era was running in real mode, so nobody would use it for an application and the NT architecture enabled for the system to intercept it and use it in a supposedly better way. It was thought to be a neat idea.

    Still, I think it was not really clever to teach the end-users such an important keyboard combination. I also remember some users back then thinking it would work the same in 95 as in NT, since both systems' GUI looked so similar.

    --
    - Otaku no naka no otaku, otaking da!!!
  3. Three keys by Anonymous Coward · · Score: 2, Interesting

    PrtScn SysRQ
    ScrLk
    Pause Break

    Anyone can tell me what these do???

  4. Re:Why only that combination? by kasperd · · Score: 4, Interesting

    Then, I believe, users clamoured for more convenience, so keyboard manufacturers started duplicating the ctrl and alt keys (and/or moved the del key) so that the salute could be performed one-handed.

    Actually some keyboards have gone a bit too far along that road. I have seen a keyboard, where you could do CTRL+ALT+DEL with just a single keypress. Yup, they really added an extra key to do just that. Some people must have used CTRL+ALT+DEL too much.

    --

    Do you care about the security of your wireless mouse?
  5. Lisp machines by Anonymous Coward · · Score: 4, Interesting

    Lisp machines were using a 5-key chord for reboot way before IBM PC. The chord LCtrl-LMeta-RCtrl-RMeta-Del was used on TI-Explorer. The meta key is the alt equivalence in lisp machines.

  6. Re:screw that - give me Mac OS X by Hes+Nikke · · Score: 2, Interesting

    (stupid preview and submit buttons being right next to each other.... *grumble*)

    that prompt sucked, what needed to be installed was MacsBug, then you could do all sorts of fun commands in the OS wide debugger :D

    the great thing about MacsBug is that it automatically invokes itself when anything even thinks about crashing. my server (runs OS 9) has MacsBug installed along with a script that will log debug information and then restart the computer.

    speaking of... that log must be getting pretty full after 4 years of this configuration...

    *runs to his server to parse^H^H^H^H^H^H delete the debugger log*

    --
    Don't call me back. Give me a call back. Bye. So yeah. But bye our, well, but alright we are on a shirt this chill.
  7. Re:Salute! by Thyrhaug · · Score: 2, Interesting

    Actually, MS DOS is very much alive. It's still used alot on install disks and similar, since it's small and not too powerfull (which often means bigger size).
    Here at work we use a modyfied win98 boot disk to install a DOS ICA client, and I must say - it works like a charm.

  8. Re:Isn't quite as fun as the Task Manager by http · · Score: 2, Interesting

    hold on, have you used MacsBug? command-power drops you into assembly language level debugging, with symbolics, and audio cds carry on playing. then type 'Scream' to look at individual threads...

    --
    If opportunity came disguised as temptation, one knock would be enough.
    3^2 * 67^1 * 977^1
  9. Celebrities for Open Source by Anonymous Coward · · Score: 5, Interesting

    How can we convince the old men of IT history to commit themselves to Open Source projects? We should assume that they do not need to work any more and that they have all the time they want to spend on Free projects.

    How would the world benefit from their insights and contacts?

    What would motivate them?

    Would a "mentor" scheme help to organise OS projects? Would it work?

  10. Key combinations are for wimps by Bigman · · Score: 2, Interesting

    I remember back in 1980 when I had my swanky new Commodore Pet 2001-8 that to reboot it (because I'd crashed it running hand-assembled machine code routines) I used a specially bent paper clip on the edge connecter ("Expansion port") that stuck out the right hand side of the machine. I'd always intended to fit a switch, even bought it.. just never got round to drilling the hole!

    --
    *--BigMan--- Time flies like an arrow.. but personally I prefer a nice glass of wine!
  11. Re:More precisely... by CTho9305 · · Score: 4, Interesting

    it can't be handled by any input APIs (Win32/DirectInput)... it gets handled directly by the keyboard driver.

    Close, but not exactly correct. It gets handled by "msgina".dll, which is loaded before logon, before anything else. msgina hooks the keyboard IO, and then traps any ctrl+alt+del presses before they reach other running programs. Modified versions of msgina.dll can be used to allow other programs to receive ctrl+alt+del presses.

    This page gives a brief explanation of how things like Novell catch ctrl+alt+del, by replacing msgina.dll.