Displaying 8 results from an estimated 8 matches for "seterrormod".
Did you mean:
seterrormode
2001 Dec 11
1
VirtualProtect and app crash: exception handling?
...eax
0075F44E retn 4
0075F44E sub_75F447 endp
eax is set to 0 on exit, which is EXCEPTION_CONTINUE_SEARCH, which means
to proceed with the UnhandledExceptionFilter Windows function, which
should either display an Application Error message, or return to the
application if SetErrorMode says so.
So what's with this trace?
0806d398:trace:seh:EXC_CallHandler calling handler at 0x761b10
code=c0000005 flags=0
It looks like we're calling 0x761B10, not 0x75F447. Why?
It also looks like EXC_CallHandler is called from EXC_RtlRaiseException,
which is called from do_segv, whi...
2004 Sep 15
2
[LLVMdev] Files to lib/System/Win32
>From: Jeff Cohen <jeffc at jolt-lang.org>
>Date: Wed, 15 Sep 2004 10:35:36 -0700
>
>What's a "compiling mesh?"
What I meant, was that there are some implicit defines in mingw (like __GCC)
and vcX (like _MVC) but possibly also other unsupported? internal
structures. As I stated earlier mingw should be win32 api compliant, but not
for complicating matters. But
2004 Sep 15
0
[LLVMdev] Files to lib/System/Win32
...iant, but not
> for complicating matters. But as stated earlier we should also use a true MS
> VC compiler as true reference.
The stack tracing code requires the header files dbghelp.h and psapi.h.
The SEH stuff is declared in windows.h; if your version has
SetUnhandledExceptionFilter and SetErrorMode you should be OK.
2008 Jun 18
2
[ win32utils-Bugs-20722 ] Windows::Error.get_last_error only returns the first character (PATCH)
...967600 -0700
+++ error.rb 2008-06-18 15:03:50.489880600 -0700
@@ -401,7 +401,8 @@
API.new(''GetLastError'', ''V'', ''L'')
API.new(''SetLastError'', ''L'', ''V'')
API.new(''SetErrorMode'', ''I'', ''I'')
- API.new(''FormatMessage'', ''LLLLPLP'', ''L'')
+ API.new(''FormatMessageA'', ''LLLLPLP'', ''L'')
+ FormatMessage = FormatMessage...
2004 Mar 31
1
wine segfaults and crashes my 2.4.x kernel
kernel is downloaded with up2date:
[s2@katleriai s2]$ cat /etc/redhat-release && rpm -q glibc kernel && uname -r
Red Hat Linux release 8.0 (Psyche)
glibc-2.3.2-4.80.8
kernel-2.4.20-27.8
kernel-2.4.20-28.8
2.4.20-28.8
when i make wine to run setup.exe from WordViewer97, i am getting usual
installer's window with two buttons. after pressing "Continue" i am
getting
2009 Aug 21
3
File.exists?("A:") on Windows VM
Hi,
I''ve got a Windows XP VM on my OS X box. Whenever I call
File.exists?("A:") on it I get a system error pop-up box from Windows.
The title of the window is "Windows - No Disk" and the error is
"Exception Processing Message" followed by some numeric codes.
It''s not a huge deal - eventually control returns to the program and it
returns false
2009 Jan 27
3
[LLVMdev] [PATCH] llvm/llvm-gcc broken on mingw32
...@@ -3271,7 +3271,7 @@
// We don't protect this under mutex_, as we only support calling it
// from the main thread.
int UnitTest::Run() {
-#ifdef GTEST_OS_WINDOWS
+#if defined(GTEST_OS_WINDOWS) && !defined(__MINGW__) && !defined(__MINGW32__)
#if !defined(_WIN32_WCE)
// SetErrorMode doesn't exist on CE.
@@ -3294,7 +3294,7 @@
}
#else
- // We are on Linux or Mac OS. There is no exception of any kind.
+ // We are on Linux, Mac OS or MingW. There is no exception of any kind.
return impl_->RunAllTests();
#endif // GTEST_OS_WINDOWS
Index: utils/unittest/goog...
2010 Aug 20
0
Wine release 1.3.1
...shdocvw: Update Spanish translation.
mshtml: Update Spanish translation.
Juan Lang (8):
ntdll: Implement NtQueryInformationProcess for ProcessDefaultHardErrorMode.
ntdll: Implement NtSetInformationProcess for ProcessDefaultHardErrorMode.
kernel32: Implement GetErrorMode/SetErrorMode on top of NTDLL.
crypt32/tests: Add a test of SSL_EXTRA_CERT_CHAIN_POLICY_PARA's fdwChecks field.
crypt32: Honor SECURITY_FLAG_IGNORE_CERT_CN_INVALID.
iphlpapi: Don't overwrite last IPv4 address with first IPv6 address.
shdocvw: Apply default scheme when none is pre...