Tagged Questions
The hardware-traps tag has no wiki summary.
5
votes
4answers
145 views
What are traps?
There are many different types of traps listed in processor datasheets, e.g. BusFault, MemManage Fault, Usage Fault and Address Error.
What is their purpose? How can they be utilized in fault ...
5
votes
2answers
333 views
How does a hardware trap in a three-past-the-end pointer happen even if the pointer is never dereferenced?
In his November 1, 2005 C++ column, Herb Sutter writes ...
int A[17];
int* endA = A + 17;
for( int* ptr = A; ptr < endA; ptr += 5 )
{
// ...
}
[O]n some CPU architectures, including
...
3
votes
2answers
473 views
Hardware breakpoints on XP 64 bit
Has anyone got hardware breakpoints to work on 64bit XP and if so how?
We have an application that uses hardware breakpoints this has worked on 32 bit XP and 32 bit Vista operating systems for ...