search for: rtlunwindex

Displaying 15 results from an estimated 15 matches for "rtlunwindex".

Did you mean: rtlunwind
2017 Jan 20
0
Wine release 2.0-rc6
...windows" is unchecked. 40096 Pendulumania: Black screen 40781 KSP Trajectory Optimization Tool (using MATLAB Runtime (MCR)) "Could not successfully parse URI string" 41001 64-bit Core Temp 1.x kernel driver 'ALSysIO.sys' crashes on unimplemented function ntoskrnl.exe.RtlUnwindEx 41218 curl 7.50: HTTPS fails with InitializeSecurityContext failed: SEC_E_INVALID_TOKEN 41290 DirectShow applications: MP3 playback is broken if winegstreamer is disabled 42020 Tompi Jones fails creating user profile 42211 redefinition of typedef 'REFERENCE_TIME' 42228 bcrypt...
2020 Aug 15
5
Supporting libunwind on Windows 10 (32bit; 64bit) for MSVC and Clang
...available via the Rtl*Unwind* functions. > Martin, you mean these functions https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-rtlunwind https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-rtlunwind2 https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-rtlunwindex https://docs.microsoft.com/en-us/windows/win32/api/winnt/nf-winnt-rtlvirtualunwind ? > > For libbacktrace, I guess the _Unwind_Backtrace function in libunwind > might work and be useful, even if the rest of libunwind doesn't make sense > in such a context. Ian, please share your...
2017 Feb 28
0
Wine release 1.8.7
...censed programs to fail due to invalid MAC address 40845 Uninstaller does not remove missing applications from the list 40978 Wrong colors on i915 and similar GPUs in GTA Vice City 41001 64-bit Core Temp 1.x kernel driver 'ALSysIO.sys' crashes on unimplemented function ntoskrnl.exe.RtlUnwindEx 41055 "Texture ... does not have a drawable" on i915 with D3D8 41141 gcc6: d3drm build warnings 41218 curl 7.50: HTTPS fails with InitializeSecurityContext failed: SEC_E_INVALID_TOKEN 41252 Helldivers gives this error when trying to run on MacOS 41476 Cannot paste in WinAut...
2015 May 18
2
[LLVMdev] RFC: New EH representation for MSVC compatibility
On Sat, May 16, 2015 at 7:29 AM, Steve Cheng <steve.ckp at gmail.com> wrote: > On 2015-05-15 18:37:58 -0400, Reid Kleckner said: > > After a long tale of sorrow and woe, my colleagues and I stand here >> before you defeated. The Itanium EH representation is not amenable to >> implementing MSVC-compatible exceptions. We need a new representation that >> preserves
2011 Feb 04
0
Wine release 1.3.13
...msvcrt: Implemented _statusfp2. msvcrt: Implemented _clearfp for SSE2 and x86_64. msvcrt: Implemented _fpreset for SSE2 and x86_64. msvcrt: Implemented _set_controlfp. msvcrt: Add a non-optimized implementation for the SSE2 math functions. include: Add a prototype for RtlUnwindEx on x86_64. ntdll: Capture the context inside RtlUnwindEx instead of assuming it's already initialized. ntdll: Avoid copying and restoring the context in RtlCaptureContext for x86_64. ntdll: Implement set_cpu_context for x86_64 directly instead of using the winebuild-generated...
2015 Apr 03
0
Wine release 1.7.40
...31579 Microsoft Visio 2007-2010 crashes on exit (unload of msctf component with ThreadMgr/CBT hook still alive) 32361 epson stylus t13 installer problem: wine: Unimplemented function setupx.dll16.DiOpenClassRegKey 33164 row-resize / col-resize cursor is wrong (Listview) 34254 Wine64 seh:RtlUnwindEx error with c++ exception handling 35135 Air Video Server HD 1.x crashes on startup (NULL SERVER_INFO_101.sv101_comment returned from NetServerGetInfo) 36133 valgrind shows some leaks in gdiplus/tests/image.c 36190 comdlg32/itemdlg shows a ton of valgrind warnings 36305 valgrind shows a...
2012 Jun 15
0
Wine release 1.4.1
...t versions too. server: Create some kernel notification events. kernel32: Implement the memory resource notification functions. winex11: Never try to clip the cursor if we don't have XInput2. ntdll: Use the context argument as working variable instead of making a copy in RtlUnwindEx. ntdll: Restore the original context for the last frame instead of the result of the unwind handler. ntdll: Set the TARGET_UNWIND flag when calling the unwind handler for the target frame. ntdll: Trace the exception extra information also in RtlUnwindEx. ntdll: Add support f...
2012 Mar 16
0
Wine release 1.5.0
...t versions too. server: Create some kernel notification events. kernel32: Implement the memory resource notification functions. winex11: Never try to clip the cursor if we don't have XInput2. ntdll: Use the context argument as working variable instead of making a copy in RtlUnwindEx. ntdll: Restore the original context for the last frame instead of the result of the unwind handler. ntdll: Set the TARGET_UNWIND flag when calling the unwind handler for the target frame. ntdll: Trace the exception extra information also in RtlUnwindEx. ntdll: Add support f...
2009 May 22
0
Wine release 1.1.22
...ts: Add a test for reading chunked data. wininet: Get rid of the SSL-specific read-ahead buffer. mlang: Return the correct count in IMLangFontLink_GetStrCodePages when aborting early. shlwapi: Add a partial stub for IConnectionPoint_InvokeWithCancel. ntdll: Added a stub for RtlUnwindEx on x86_64. ntdll: Initial implementation of RtlVirtualUnwind on x86_64. ntdll/tests: Added some test cases for RtlVirtualUnwind. ntdll: Free old memory block when reallocating to a large block. ntdll: Tweak the file mapping permission checks some more, with tests. ntdl...
2015 May 18
2
[LLVMdev] RFC: New EH representation for MSVC compatibility
...ht the stack already is unwinded completely when you reach > the beginning of the catch block (but not a __finally block, i.e. the > cleanup code). At least, that's the impression I get from reading > reverse-engineered source code for the personality functions and the > Windows API RtlUnwindEx. For __try / __except, yes, the stack is unwound at the point of the __except. For try / catch, the stack unwinds after you leave the catch body by fallthrough, goto, break, continue, return or whatever else you like, because after that point you cannot rethrow anymore. We could try to do all th...
2015 May 18
4
[LLVMdev] RFC: New EH representation for MSVC compatibility
We already have something like what you describe in the form of mingw support. It runs on Windows and handles exceptions using a DWARF-style personality function and (I think) an LLVM-provided implementation of the libc++abi library. What this doesn't do is provide interoperability with MSVC-compiled objects. For instance, you can't throw an exception from MSVC-compiled code and catch
2019 Aug 30
0
Wine release 4.15
...ines. include: Allow compiling against IDirectSound*8 interfaces. odbccp32: Correct error when driver cannot be found. msi: Don't error when an ODBC Data Source fails to register. Andrey Gusev (1): twain_32: Add missing debugstr_a. André Hentschel (1): ntdll: Add RtlUnwindEx spec entry for ARM64. Austin English (2): mscoree/tests: Mark tests as todo_wine if mono is not available on the current platform. regini: Add stub program. Benedikt Bär (1): ucrtbase: Add more functions for Star Citizen 3.6.1. Bernhard Übelacker (2): cmd.exe: Command typ...
2020 Sep 11
0
Wine release 5.17
...to display current Windows version. Paul Gofman (22): ntdll: Implement RtlGetExtendedContextLength(). kernel32: Implement InitializeContext[2](). kernel32: Implement LocateXStateFeature(). ntdll: Implement RtlLocateLegacyContext(). ntdll: Clear CONTEXT_XSTATE flag in RtlUnwindEx(). wbemprox: Provide semi-stub implementation for client_security_QueryBlanket(). kernel32: Implement SetXStateFeaturesMask(). kernel32: Implement GetXStateFeaturesMask(). kernel32: Implement CopyContext(). ntdll: Implement saving AVX registers in NtGetContextThread()....
2009 Jun 19
0
Wine release 1.1.24
...for Unicode. comctl32: Avoid repainting a NULL link. widl: Don't make the proxy virtual tables const if they use delegation. server: Avoid a crash when trying to wait on a disconnected pipe client. ole32: Get rid of line feeds and tabs in traces. kernel32: Forward RtlUnwindEx to ntdll for x86_64. winebuild: Properly restore %rax and %rbx in call_from_regs on x86_64. rpcrt4: Adjust the start of the proxy virtual table for stubless proxies. opengl32: Make the script default to version 1.1. Remove the glGetLevelParameter stubs. configure: Detect the...
2020 Aug 15
5
Supporting libunwind on Windows 10 (32bit; 64bit) for MSVC and Clang
Hello. I was trying to compile https://github.com/llvm/llvm-project/tree/master/libunwind using: - MSVC - Clang I wasn't able to configure this project for using MSVC (directly or via clang-cl): >cmake -G Ninja -DLLVM_PATH="C:/Users/clang/llvm-project-10.0.1/llvm" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="C:\Users\clang\libunwind_llvm" ../libunwind --