Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
1c9c2faa
Commit
1c9c2faa
authored
Mar 19, 2007
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mac OS X gui: Make sure the "force quit" menu item is handled instantly.
parent
c90b289c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+11
-0
No files found.
modules/gui/macosx/intf.m
View file @
1c9c2faa
...
@@ -110,10 +110,21 @@ jmp_buf jmpbuffer;
...
@@ -110,10 +110,21 @@ jmp_buf jmpbuffer;
static
void
Run
(
intf_thread_t
*
p_intf
)
static
void
Run
(
intf_thread_t
*
p_intf
)
{
{
sigset_t
set
;
/* Do it again - for some unknown reason, vlc_thread_create() often
/* Do it again - for some unknown reason, vlc_thread_create() often
* fails to go to real-time priority with the first launched thread
* fails to go to real-time priority with the first launched thread
* (???) --Meuuh */
* (???) --Meuuh */
vlc_thread_set_priority
(
p_intf
,
VLC_THREAD_PRIORITY_LOW
);
vlc_thread_set_priority
(
p_intf
,
VLC_THREAD_PRIORITY_LOW
);
/* Make sure the "force quit" menu item does quit instantly.
* VLC overrides SIGTERM which is sent by the "force quit"
* menu item to make sure deamon mode quits gracefully, so
* we un-override SIGTERM here. */
sigemptyset
(
&
set
);
sigaddset
(
&
set
,
SIGTERM
);
pthread_sigmask
(
SIG_UNBLOCK
,
&
set
,
NULL
);
[[
VLCMain
sharedInstance
]
setIntf
:
p_intf
];
[[
VLCMain
sharedInstance
]
setIntf
:
p_intf
];
[
NSBundle
loadNibNamed
:
@"MainMenu"
owner
:
NSApp
];
[
NSBundle
loadNibNamed
:
@"MainMenu"
owner
:
NSApp
];
...
...
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