Alexandre Julliard pushed to branch master at wine / wine
Commits:
b1cb1981 by Paul Gofman at 2025-04-25T11:27:12+02:00
kernel32/tests: Add more tests for write watches.
- - - - -
c52eab90 by Paul Gofman at 2025-04-25T23:48:54+02:00
ntdll: Use UFFD for write watches support if available.
- - - - -
6 changed files:
- configure
- configure.ac
- dlls/kernel32/tests/virtual.c
- dlls/ntdll/unix/virtual.c
- dlls/ws2_32/tests/sock.c
- include/config.h.in
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/cd197f8588b8880899e5e172b9abe…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/cd197f8588b8880899e5e172b9abe…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
cd197f85 by Keno Fischer at 2025-04-25T11:03:52+02:00
ntdll: Make server requests robust to spurious short writes.
It is possible for the write/writev functions in send_request to
return short writes, even in non-error conditions. There are
several situations where this might happen. Examples are:
- SIGSTOP/SIGCONT (either explicitly or via ptrace attach)
- cgroup freezes and similar mechanisms
- system suspends
- External debuggers or profilers
In general, Linux makes very few guarantees about syscall restarts.
In some cases (in particular when no bytes have been transferred at all),
the linux kernel will automatically restart the system call, but once any
bytes have been transferred, the result will be a short write with
no automatic restart.
Signed-off-by: Keno Fischer <keno(a)juliacomputing.com>
- - - - -
1 changed file:
- dlls/ntdll/unix/server.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/cd197f8588b8880899e5e172b9abe7…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/commit/cd197f8588b8880899e5e172b9abe7…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
dbe29bc5 by Gabriel Ivăncescu at 2025-04-25T10:42:21+02:00
mshtml: Rename struct constructor to stub_constructor.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
241cc97d by Gabriel Ivăncescu at 2025-04-25T10:42:23+02:00
mshtml: Consolidate the functional constructors into a common struct implementation.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
dede1ba5 by Gabriel Ivăncescu at 2025-04-25T10:42:26+02:00
mshtml: Define the constructor's prototype on mshtml side.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
ae101be6 by Gabriel Ivăncescu at 2025-04-25T10:42:26+02:00
mshtml: Define "create" from XMLHttpRequest constructor as a jscript prop in IE9+ modes.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
70265094 by Gabriel Ivăncescu at 2025-04-25T10:42:28+02:00
mshtml: Return proper string from functional constructors' toString in IE9+ modes.
Signed-off-by: Gabriel Ivăncescu <gabrielopcode(a)gmail.com>
- - - - -
12 changed files:
- dlls/jscript/dispex.c
- dlls/jscript/function.c
- dlls/jscript/jscript.c
- dlls/jscript/jscript.h
- dlls/jscript/jsdisp.idl
- dlls/mshtml/dispex.c
- dlls/mshtml/htmlimg.c
- dlls/mshtml/htmlselect.c
- dlls/mshtml/mshtml_private.h
- dlls/mshtml/mutation.c
- dlls/mshtml/tests/documentmode.js
- dlls/mshtml/xmlhttprequest.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f171f6cb6636e543b48db5056e886…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/f171f6cb6636e543b48db5056e886…
You're receiving this email because of your account on gitlab.winehq.org.
Alexandre Julliard pushed to branch master at wine / wine
Commits:
49f33dff by Alexandros Frantzis at 2025-04-24T21:25:36+02:00
winewayland: Always check the role to determine whether a surface is a toplevel.
Since the role objects in the wayland_surface struct are part of a union, we
first need to check whether the surface has the right role before checking
the role objects themselves. Otherwise we risk using a subsurface as a toplevel
or vice-versa.
- - - - -
2451b100 by Alexandros Frantzis at 2025-04-24T21:25:36+02:00
winewayland: Introduce helper to check whether a surface is toplevel.
- - - - -
3 changed files:
- dlls/winewayland.drv/wayland_surface.c
- dlls/winewayland.drv/waylanddrv.h
- dlls/winewayland.drv/window.c
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7456024a7d8607cd047f8e2879726…
--
View it on GitLab: https://gitlab.winehq.org/wine/wine/-/compare/7456024a7d8607cd047f8e2879726…
You're receiving this email because of your account on gitlab.winehq.org.