Module: wine
Branch: master
Commit: a345a1cf84e41f77306c7228a8c2f4777069d406
URL: https://source.winehq.org/git/wine.git/?a=commit;h=a345a1cf84e41f77306c7228…
Author: Eric Pouech <eric.pouech(a)gmail.com>
Date: Wed Sep 15 10:37:46 2021 +0200
dbghelp/dwarf: Separate CU handling from module handling.
Move out of dwarf2_parse_context_s structure information related to the
module and put them into the dwarf2_parse_module_context_s structure
(actually the dwarf2_parse_context should be named dwarf2_parse_cu_context
as it only related to a compilation unit).
Signed-off-by: Eric Pouech <eric.pouech(a)gmail.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/dbghelp/dwarf.c | 180 +++++++++++++++++++++++++++------------------------
1 file changed, 95 insertions(+), 85 deletions(-)
Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=a345a1cf84e41f77306c…
Module: wine
Branch: master
Commit: 8b434bdc7fe98e3bd97e180f31bc18d87161c05a
URL: https://source.winehq.org/git/wine.git/?a=commit;h=8b434bdc7fe98e3bd97e180f…
Author: Rémi Bernon <rbernon(a)codeweavers.com>
Date: Wed Sep 15 09:04:41 2021 +0200
winebus.sys: Return an event from SDL bus wait on input report.
Instead of calling process_hid_report.
This adds a reference count on unix devices to make sure they are kept
alive until all their input report events have been processed.
This also uses a bus-specific device list, to be able to find devices
from joystick ids without having to call back to the win32 side.
Signed-off-by: Rémi Bernon <rbernon(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winebus.sys/bus_sdl.c | 78 +++++++++++++++++++++++++++--------------
dlls/winebus.sys/main.c | 31 ++++++++++++++--
dlls/winebus.sys/unix_private.h | 4 +++
dlls/winebus.sys/unixlib.c | 50 ++++++++++++++++++++++++--
dlls/winebus.sys/unixlib.h | 8 +++++
5 files changed, 140 insertions(+), 31 deletions(-)
Diff: https://source.winehq.org/git/wine.git/?a=commitdiff;h=8b434bdc7fe98e3bd97e…