Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
24c29052
Commit
24c29052
authored
Sep 20, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Unaligned SRW locks crash on ARM platforms.
parent
fc6b9399
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
sync.c
dlls/kernel32/tests/sync.c
+5
-0
No files found.
dlls/kernel32/tests/sync.c
View file @
24c29052
...
...
@@ -2006,6 +2006,7 @@ static struct
LONG
trylock_shared
;
}
srwlock_base_errors
;
#if defined(__i386__) || defined(__x86_64__)
#include "pshpack1.h"
struct
{
...
...
@@ -2013,6 +2014,7 @@ struct
SRWLOCK
lock
;
}
unaligned_srwlock
;
#include "poppack.h"
#endif
/* Sequence of acquire/release to check boundary conditions:
* 0: init
...
...
@@ -2885,7 +2887,10 @@ START_TEST(sync)
test_condvars_base
(
&
unaligned_cv
.
cv
);
test_condvars_consumer_producer
();
test_srwlock_base
(
&
aligned_srwlock
);
#if defined(__i386__) || defined(__x86_64__)
/* unaligned locks only work on x86 platforms */
test_srwlock_base
(
&
unaligned_srwlock
.
lock
);
#endif
test_srwlock_example
();
test_alertable_wait
();
test_apc_deadlock
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment