|
My Pc keep getting following error in event viewer around every 10-15minutes. whenever it happen, the xp theme change to classic theme then change back to normal theme, and all network will be down, must restart PC to online again.
"Faulting application...
Started by PS on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
You can get there by clicking the....
Despite the extremely not-useful error message (another favourite of mine is "The data is the error" ), sometimes the standard link that is shown for each event, in fact links to a very specific knowledge base article .
|
|
I'm debugging an intermittent problem in which an application (created using C++ in Visual Studio 2005) is faulting. The event log provides the following information:
faulting module msvcr80.dll version 8.0.50727.1433 fault address 0x00008aa0
I did a ...
Started by russilwvong on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Address this low usually....
That might give you a clue where to start isolating the bug .
Googling myself, someone suggested using dependency walker to find out which module you're using that is directly dependent on msvcr80.dll -- since you are using VS 2005 .
|
|
What is segmentation fault? Is it different in C and C++? How are segmentation fault and dangling pointer related?
Started by Rajendra on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
According to wikipedia:
A segmentation fault-only location, or to overwrite part of....
A segmentation fault is caused by a request for a page that the process does not have listed in its, but does point to an "unexpected" segment of memory.
|
Ask your Facebook Friends
|
Difference between a bus error and a segmentation fault? Can it happen that a program gives a seg fault and stops for the first time and for the second time it may give a bus error and exit ?
Started by Thunderboltz on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
SIGBUS is an implementation-defined hardware fault it happen that a program gives a seg fault and stops for the first time and for the second time it may give, a program that can exit with a segmentation....
The program references an invalid address.
|
|
REAR WINDOW SHATTERING FAULT - dealers aware of fault Hi there Just thought I'd share this with you all!
The rear window of my car was smashed last night and now it looks like I'm left with a £1600 Bill!!
The only way to replace the Non Laminated Glass...
Answer Snippets (Read the full thread at mini2):
I examined: http://www.mini2.com/forum/first-generation-mini-convertible/79384-rear-window-shattering-fault.
I then got thinking about this thread and the possiblity of it being a fault with the window.
|
|
What are some of the general reasons for Memory Leakage and Segmentation Fault kind of errors ?
Started by Rachel on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Segmentation Fault (Wikipedia)
Lots, including:
allocation.
Not allocated memory for the pointer to point to.
|
|
I'm attempting to run NSIS.exe on Windows 7 x64, but it's crashing on start, and leaving this in the event log:
Faulting application name: NSIS.exe, version: 0.0.0.0, time stamp: 0x4b1ae3a1 Faulting module name: GDI32.dll, version: 6.1.7600.16385, time...
Started by Nick Bolton on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I've learned a simple rule with Microsoft products: if they do not work as expected, restart them or reboot the computer, and if they still don't work, DON'T PANIC and... .
Man I hate restarting...
I don't know what the cause is, but restarting fixes this .
|
|
Is there any tool which displays at runtime, Page Faults delta on a per thread basis? Basically I have an application that is causing lots of page faults and I want to nail down the thread which is causing the maximum.
Started by Canopus on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I use process....
Surely though its going to be the busiest thread in terms of either CPU or may be Context switches that you would want to look at .
I really doubt you could nail down page faults to threads a process page faults not a thread.
|
|
I'm taking a grad class on software testing and we spent a whole class on the difference between faults, errors, and failures. I was dissatisfied by the definition of a software fault in testing. What's your definition?
Answer Snippets (Read the full thread at stackoverflow):
Failure: The variation....
There definition described as:
fault: The actual 'mistake' in the code error: The bad state in the system that results from the fault.
According to the ISQTB a fault is a defect.
Sounds like splitting hairs to me.
|
|
I'm looking for some good articles on fault tolerant software architectures. Could I please have some recommendations.
Started by macleojw on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
System Structure for Software Fault Tolerance – Randell - 1975 (also presentation version....
Also ( http://www.research.ibm.com/autonomic/ ).
These principles deal with Desktop, Server applications and/or SOA.
fault tolerance in software.
|