Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
35536f7c
Commit
35536f7c
authored
Oct 10, 2011
by
KO Myung-Hun
Committed by
Rémi Denis-Courmont
Oct 10, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable daemon mode on OS/2
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
f04b841f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/libvlc-module.c
src/libvlc-module.c
+1
-1
src/libvlc.c
src/libvlc.c
+3
-3
No files found.
src/libvlc-module.c
View file @
35536f7c
...
...
@@ -2188,7 +2188,7 @@ vlc_module_begin ()
add_bool
(
"quiet"
,
0
,
QUIET_TEXT
,
QUIET_LONGTEXT
,
false
)
change_short
(
'q'
)
#if !defined(WIN32)
#if !defined(WIN32)
&& !defined(__OS2__)
add_bool
(
"daemon"
,
0
,
DAEMON_TEXT
,
DAEMON_LONGTEXT
,
true
)
change_short
(
'd'
)
...
...
src/libvlc.c
View file @
35536f7c
...
...
@@ -95,7 +95,7 @@
* The evil global variables. We handle them with care, don't worry.
*****************************************************************************/
#if
ndef WIN32
#if
!defined(WIN32) && !defined(__OS2__)
static
bool
b_daemon
=
false
;
#endif
...
...
@@ -777,7 +777,7 @@ void libvlc_InternalCleanup( libvlc_int_t *p_libvlc )
msg_Dbg
(
p_libvlc
,
"removing stats"
);
#if
ndef WIN32
#if
!defined( WIN32 ) && !defined( __OS2__ )
char
*
psz_pidfile
=
NULL
;
if
(
b_daemon
)
...
...
@@ -853,7 +853,7 @@ int libvlc_InternalAddIntf( libvlc_int_t *p_libvlc, char const *psz_module )
char
*
psz_interface
=
var_CreateGetNonEmptyString
(
p_libvlc
,
"intf"
);
if
(
!
psz_interface
)
/* "intf" has not been set */
{
#if
ndef WIN32
#if
!defined( WIN32 ) && !defined( __OS2__ )
if
(
b_daemon
)
/* Daemon mode hack.
* We prefer the dummy interface if none is specified. */
...
...
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