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
0f58689c
Commit
0f58689c
authored
Sep 07, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport vlc_thread_fatal (short lived)
parent
6429d700
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
5 deletions
+3
-5
include/vlc_threads.h
include/vlc_threads.h
+0
-2
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/misc/threads.c
src/misc/threads.c
+3
-2
No files found.
include/vlc_threads.h
View file @
0f58689c
...
...
@@ -165,8 +165,6 @@ enum {
#define vlc_thread_ready vlc_object_signal
VLC_EXPORT
(
void
,
vlc_thread_fatal
,
(
const
char
*
action
,
int
error
,
const
char
*
function
,
const
char
*
file
,
unsigned
line
));
#if defined(LIBVLC_USE_PTHREAD)
# define vlc_assert_locked( m ) \
assert (pthread_mutex_lock (m) == EDEADLK)
...
...
src/libvlccore.sym
View file @
0f58689c
...
...
@@ -497,7 +497,6 @@ vlc_strlcpy
vlc_strtoll
vlc_submodule_create
__vlc_thread_create
vlc_thread_fatal
__vlc_thread_join
__vlc_thread_set_priority
vlc_threadvar_create
...
...
src/misc/threads.c
View file @
0f58689c
...
...
@@ -111,8 +111,9 @@ static inline unsigned long vlc_threadid (void)
*****************************************************************************
* This is mostly meant for debugging.
*****************************************************************************/
void
vlc_thread_fatal
(
const
char
*
action
,
int
error
,
const
char
*
function
,
const
char
*
file
,
unsigned
line
)
static
void
vlc_thread_fatal
(
const
char
*
action
,
int
error
,
const
char
*
function
,
const
char
*
file
,
unsigned
line
)
{
fprintf
(
stderr
,
"LibVLC fatal error %s (%d) in thread %lu "
,
action
,
error
,
vlc_threadid
());
...
...
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