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
7fd923e4
Commit
7fd923e4
authored
May 03, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No need to kill VLC if it's exiting already.
parent
b89d540a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
27 deletions
+6
-27
src/vlc.c
src/vlc.c
+6
-27
No files found.
src/vlc.c
View file @
7fd923e4
...
...
@@ -52,14 +52,12 @@ extern char *FromLocale (const char *);
#include <windows.h>
extern
void
__wgetmainargs
(
int
*
argc
,
wchar_t
***
wargv
,
wchar_t
***
wenviron
,
int
expand_wildcards
,
int
*
startupinfo
);
static
inline
void
Kill
(
void
)
{
}
#else
# include <signal.h>
# include <time.h>
# include <pthread.h>
static
void
Kill
(
void
);
static
void
*
SigHandler
(
void
*
set
);
#endif
...
...
@@ -68,7 +66,7 @@ static void *SigHandler (void *set);
*****************************************************************************/
int
main
(
int
i_argc
,
const
char
*
ppsz_argv
[]
)
{
int
i_ret
;
int
i_ret
,
id
;
# ifdef __GLIBC__
if
(
dlsym
(
RTLD_NEXT
,
"inet6_rth_add"
)
&&
!
dlsym
(
RTLD_NEXT
,
"qsort_r"
))
...
...
@@ -109,11 +107,9 @@ int main( int i_argc, const char *ppsz_argv[] )
#endif
/* Create a libvlc structure */
i_ret
=
VLC_Create
();
if
(
i_ret
<
0
)
{
return
-
i_ret
;
}
id
=
VLC_Create
();
if
(
id
<
0
)
return
1
;
#if !defined(WIN32) && !defined(UNDER_CE)
/* Synchronously intercepted POSIX signals.
...
...
@@ -208,7 +204,7 @@ int main( int i_argc, const char *ppsz_argv[] )
}
/* Initialize libvlc */
i_ret
=
VLC_Init
(
0
,
i_argc
,
ppsz_argv
);
i_ret
=
VLC_Init
(
id
,
i_argc
,
ppsz_argv
);
if
(
i_ret
<
0
)
{
VLC_Destroy
(
0
);
...
...
@@ -220,8 +216,6 @@ int main( int i_argc, const char *ppsz_argv[] )
/* Finish the threads */
VLC_CleanUp
(
0
);
Kill
();
/* Destroy the libvlc structure */
VLC_Destroy
(
0
);
...
...
@@ -284,9 +278,7 @@ static void *SigHandler (void *data)
fprintf
(
stderr
,
"signal %d received, terminating vlc - do it "
"again quickly in case it gets stuck
\n
"
,
i_signal
);
/* Acknowledge the signal received */
Kill
();
VLC_Die
(
0
);
}
else
/* time (NULL) <= abort_time */
{
...
...
@@ -308,19 +300,6 @@ static void *SigHandler (void *data)
}
/* Never reached */
}
static
void
KillOnce
(
void
)
{
VLC_Die
(
0
);
}
static
void
Kill
(
void
)
{
static
pthread_once_t
once
=
PTHREAD_ONCE_INIT
;
pthread_once
(
&
once
,
KillOnce
);
}
#endif
#if defined(UNDER_CE)
...
...
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