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
07931f2d
Commit
07931f2d
authored
Oct 28, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed no longer needed SIGNAL_Unblock() function.
parent
f405629e
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
45 deletions
+0
-45
exception.c
dlls/ntdll/exception.c
+0
-2
signal_i386.c
dlls/ntdll/signal_i386.c
+0
-14
signal_powerpc.c
dlls/ntdll/signal_powerpc.c
+0
-14
signal_sparc.c
dlls/ntdll/signal_sparc.c
+0
-14
thread.h
include/thread.h
+0
-1
No files found.
dlls/ntdll/exception.c
View file @
07931f2d
...
...
@@ -241,8 +241,6 @@ void WINAPI EXC_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
if
(
send_debug_event
(
rec
,
TRUE
,
context
)
==
DBG_CONTINUE
)
return
;
/* continue execution */
SIGNAL_Unblock
();
/* we may be in a signal handler, and exception handlers may jump out */
if
(
call_vectored_handlers
(
rec
,
context
)
==
EXCEPTION_CONTINUE_EXECUTION
)
return
;
frame
=
NtCurrentTeb
()
->
Tib
.
ExceptionList
;
...
...
dlls/ntdll/signal_i386.c
View file @
07931f2d
...
...
@@ -1402,20 +1402,6 @@ void SIGNAL_Block(void)
}
/***********************************************************************
* SIGNAL_Unblock
*
* Unblock signals. Called from EXC_RtlRaiseException.
*/
void
SIGNAL_Unblock
(
void
)
{
sigset_t
all_sigs
;
sigfillset
(
&
all_sigs
);
sigprocmask
(
SIG_UNBLOCK
,
&
all_sigs
,
NULL
);
}
/**********************************************************************
* SIGNAL_Reset
*
...
...
dlls/ntdll/signal_powerpc.c
View file @
07931f2d
...
...
@@ -668,20 +668,6 @@ void SIGNAL_Block(void)
}
/***********************************************************************
* SIGNAL_Unblock
*
* Unblock signals. Called from EXC_RtlRaiseException.
*/
void
SIGNAL_Unblock
(
void
)
{
sigset_t
all_sigs
;
sigfillset
(
&
all_sigs
);
sigprocmask
(
SIG_UNBLOCK
,
&
all_sigs
,
NULL
);
}
/**********************************************************************
* SIGNAL_Reset
*
...
...
dlls/ntdll/signal_sparc.c
View file @
07931f2d
...
...
@@ -466,20 +466,6 @@ void SIGNAL_Block(void)
}
/***********************************************************************
* SIGNAL_Unblock
*
* Unblock signals. Called from EXC_RtlRaiseException.
*/
void
SIGNAL_Unblock
(
void
)
{
sigset_t
all_sigs
;
sigfillset
(
&
all_sigs
);
sigprocmask
(
SIG_UNBLOCK
,
&
all_sigs
,
NULL
);
}
/**********************************************************************
* SIGNAL_Reset
*
...
...
include/thread.h
View file @
07931f2d
...
...
@@ -161,7 +161,6 @@ extern void DECLSPEC_NORETURN SYSDEPS_AbortThread( int status );
/* signal handling */
extern
BOOL
SIGNAL_Init
(
void
);
extern
void
SIGNAL_Block
(
void
);
extern
void
SIGNAL_Unblock
(
void
);
extern
void
SIGNAL_Reset
(
void
);
#endif
/* __WINE_THREAD_H */
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