home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / os / mswindo / programm / win32 / 2417 < prev    next >
Encoding:
Internet Message Format  |  1992-12-12  |  1.2 KB

  1. Path: sparky!uunet!ogicse!news.u.washington.edu!tad
  2. From: tad@wrq.com (Tad Marshall)
  3. Newsgroups: comp.os.ms-windows.programmer.win32
  4. Subject: Re: What is a Fatal System Error 0x0000F006 ??
  5. Message-ID: <1992Dec13.000611.8739@u.washington.edu>
  6. Date: 13 Dec 92 00:06:11 GMT
  7. Article-I.D.: u.1992Dec13.000611.8739
  8. References: <1992Dec12.074959.26741@sol.ctr.columbia.edu>
  9. Sender: news@u.washington.edu (USENET News System)
  10. Organization: Walker Richer & Quinn, Inc., Seattle, WA
  11. Lines: 25
  12.  
  13. In article <1992Dec12.074959.26741@sol.ctr.columbia.edu> tim@math.uakron.edu (Timothy Smith) writes:
  14. >
  15. >When ever I run NT for more than a few minutes I get the following 
  16. >messages:  Fatal System Error: 0x0000F006
  17. >
  18. >Now what in the hell is that?  I've heard of cryptic error messages, but
  19. >you have to be kidding..  Any ideas..
  20.  
  21. From the file bugcodes.h in the ~\private\ntos\inc directory in the NT DDK,
  22.  
  23. //
  24. // MessageId: SYSTEM_FATAL_TRAP6
  25. //
  26. // MessageText:
  27. //
  28. //  Fatal system trap - invalid opcode.
  29. //
  30. #define SYSTEM_FATAL_TRAP6               ((ULONG)0x0000F006L)
  31.  
  32. In short, it's the invalid opcode exception -- int 6 -- that happens when
  33. you execute some bad code.
  34.  
  35. As for where or why it's happening, I don't know.  Never happens to me.
  36.  
  37. -- Tad
  38.