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
21f95cf7
Commit
21f95cf7
authored
May 05, 2005
by
Emmanuel Maillard
Committed by
Alexandre Julliard
May 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fix NTDLL_wait_for_multiple_objects call in usr1_handler.
- Fix an error due to "invalid lvalue in assignment" with gcc 4 on Darwin 8.0.
parent
1492028a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+2
-2
No files found.
dlls/ntdll/signal_powerpc.c
View file @
21f95cf7
...
...
@@ -133,7 +133,7 @@ typedef struct ucontext SIGCONTEXT;
/* Float Registers access */
# define FLOAT_sig(reg_num, context) FLOATREG_sig(fpregs[reg_num], context)
# define FPSCR_sig(context)
((double)FLOATREG_sig(fpscr, context)
)
# define FPSCR_sig(context)
FLOATREG_sig(fpscr, context
)
/* Exception Registers access */
# define DAR_sig(context) EXCEPREG_sig(dar, context)
/* Fault registers for coredump */
...
...
@@ -584,7 +584,7 @@ static HANDLER_DEF(usr1_handler)
/* wait with 0 timeout, will only return once the thread is no longer suspended */
timeout
.
QuadPart
=
0
;
NTDLL_wait_for_multiple_objects
(
0
,
NULL
,
0
,
&
timeout
);
NTDLL_wait_for_multiple_objects
(
0
,
NULL
,
0
,
&
timeout
,
0
);
}
...
...
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