Niklas Baumstark
2011-08-02 16:06:49 UTC
Hi guys,
I wonder whether there is a cross-architecture way to replace MSVC code like
__try {
// code that can create access violations
} __except(EXCEPTION_EXECUTE_HANDLER) {
// handler code
}
with an equivalent construct in GCC? I know about a viable solution for x86
(http://www.programmingunlimited.net/siteexec/content.cgi?page=mingw-seh),
but I can't figure out how to do it on x64.
Greetings,
Niklas
I wonder whether there is a cross-architecture way to replace MSVC code like
__try {
// code that can create access violations
} __except(EXCEPTION_EXECUTE_HANDLER) {
// handler code
}
with an equivalent construct in GCC? I know about a viable solution for x86
(http://www.programmingunlimited.net/siteexec/content.cgi?page=mingw-seh),
but I can't figure out how to do it on x64.
Greetings,
Niklas