- 13 Feb, 2023 1 commit
-
-
Shaun Ren authored
-
- 08 Feb, 2023 3 commits
-
-
Brendan Shanks authored
-
Zebediah Figura authored
The Rutoken driver installer tries to start this service, and fails if it doesn't exist. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54396
-
Zebediah Figura authored
Now that FLG_ADDREG_APPEND is changed to correctly create the value if it doesn't exist, this is safe, and less error-prone when adding new services.
-
- 01 Feb, 2023 1 commit
-
-
Hans Leidekker authored
-
- 24 Jan, 2023 1 commit
-
-
Floris Renaud authored
-
- 07 Dec, 2022 3 commits
-
-
Brendan Shanks authored
-
Piotr Caban authored
-
Piotr Caban authored
-
- 05 Dec, 2022 1 commit
-
-
Piotr Caban authored
-
- 01 Dec, 2022 3 commits
-
-
Brendan Shanks authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54009
-
Brendan Shanks authored
-
Brendan Shanks authored
-
- 21 Nov, 2022 1 commit
-
-
Piotr Caban authored
-
- 07 Nov, 2022 1 commit
-
-
Martin Storsjö authored
On most ELF platforms on ARM, ARM EHABI is the unwind info format normally used, instead of DWARF like on most other platforms. Currently, when unwinding through ELF objects with libunwind, the libraries don't have any .eh_frame section mapped at runtime (since DWARF isn't used for unwinding). Instead, what happens is that libunwind ends up loading .debug_frame from the libraries on disk instead. Therefore, currently, ELF unwinding relies on the .so files not being stripped. This patch adds the necessary EHABI unwinding instructions in the assembly functions that currently have DWARF CFI instructions. EHABI isn't signaled via any specific preprocessor macro, but is signaled by the absence of other unwind mechanisms (such as __ARM_DWARF_EH__ and __SEH__, or maybe SjLj). Mark the asm functions in the preloaders as .cantunwind, to avoid undefined references to __aeabi_unwind_cpp_pr* functions. Also mark other assembly functions as .cantunwind; for signal_exit_thread this is essential if the function is marked with .fnstart/.fnend - otherwise exiting threads does hang. (pthread_exit internally calls _Unwind_ForcedUnwind, which would hang if signal_exit_thread had .fnstart without any matching unwind info). This would, in principle, allow unwinding through these functions with libunwind, for versions of libunwind that can parse the EHABI unwind info - see e.g. https://github.com/libunwind/libunwind/commit/4d779f55c0d0a3814453517e54cd0f7bed69ca74. (This commit isn't yet in any current release AFAIK). Unwinding with EHABI via libunwind would require a few tweaks to the libunwind interface usage in unix/signal_arm.c though, since e.g. the unw_get_proc_info call fails if there's no .eh_frame or .debug_frame available. Signed-off-by: Martin Storsjö <martin@martin.st>
-
- 31 Oct, 2022 1 commit
-
-
Gerald Pfeifer authored
Commit af996344 used ARRAY_SIZE in FreeBSD-specifc code which, alas, is not available here, so revert that change.
-
- 25 Oct, 2022 1 commit
-
-
Michael Stefaniuc authored
-
- 19 Jul, 2022 1 commit
-
-
Paul Gofman authored
Signed-off-by: Paul Gofman <pgofman@codeweavers.com>
-
- 04 Jul, 2022 1 commit
-
-
Jinoh Kang authored
This is required for fetching pointer-valued vectors (e.g. AT_SYSINFO_EHDR). Signed-off-by: Jinoh Kang <jinoh.kang.kr@gmail.com>
-
- 24 Jun, 2022 1 commit
-
-
Alexandre Julliard authored
Based on a script written by Giovanni Mascellani. Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 28 Apr, 2022 1 commit
-
-
Giovanni Mascellani authored
New time zone data were generated from CLDR release 41 and tzdata release 2022a. Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 24 Mar, 2022 1 commit
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 21 Mar, 2022 1 commit
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 18 Mar, 2022 2 commits
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 02 Mar, 2022 1 commit
-
-
Zhiyi Zhang authored
Signed-off-by: Zhiyi Zhang <zzhang@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 31 Jan, 2022 1 commit
-
-
Esme Povirk authored
Signed-off-by: Esme Povirk <esme@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 28 Jan, 2022 1 commit
-
-
Arkadiusz Hiler authored
This makes it so that all the devices on the HID bus now have Class, ClassGUID, Driver and DriverDesc register properties populated. Without having at least Driver and Class set SDL2 refuses to use HID devices directly. Signed-off-by: Arkadiusz Hiler <ahiler@codeweavers.com> Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 27 Jan, 2022 2 commits
-
-
Rémi Bernon authored
The service has StartType=2, and should start automatically. Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Rémi Bernon authored
Device drivers may be installed and started on prefix initialization but if PlugPlay is missing they won't be able to send plugplay notifications until the prefix is restarted. The service has StartType=2, and should start automatically. Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 21 Dec, 2021 1 commit
-
-
Giovanni Mascellani authored
Unicode CLDR release 40 and tzdata 2021e were used. Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 09 Dec, 2021 1 commit
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 04 Nov, 2021 1 commit
-
-
Loïc Rebmeister authored
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51968Signed-off-by: Loïc Rebmeister <fox2code@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 25 Oct, 2021 2 commits
-
-
Alistair Leslie-Hughes authored
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Damjan Jovanovic authored
Signed-off-by: Damjan Jovanovic <damjan.jov@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 20 Oct, 2021 1 commit
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 21 Sep, 2021 2 commits
-
-
Giovanni Mascellani authored
This particular bug involved a DST offset of -25 hours, which broke Mono. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51758Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Giovanni Mascellani authored
Microsoft data is contiguous, and there applications (e.g., Mono) that depend on that. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51758Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
- 17 Sep, 2021 2 commits
-
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-
Alexandre Julliard authored
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-