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
5dc38d35
Commit
5dc38d35
authored
May 22, 2011
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexported vlc_thread_create/join.
They are not used by modules anymore.
parent
67b16b1b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
10 deletions
+7
-10
include/vlc_threads.h
include/vlc_threads.h
+1
-8
src/libvlc.h
src/libvlc.h
+6
-0
src/libvlccore.sym
src/libvlccore.sym
+0
-2
No files found.
include/vlc_threads.h
View file @
5dc38d35
...
...
@@ -194,9 +194,8 @@ VLC_API int vlc_threadvar_create(vlc_threadvar_t * , void (*) (void *) );
VLC_API
void
vlc_threadvar_delete
(
vlc_threadvar_t
*
);
VLC_API
int
vlc_threadvar_set
(
vlc_threadvar_t
,
void
*
);
VLC_API
void
*
vlc_threadvar_get
(
vlc_threadvar_t
);
VLC_API
int
vlc_thread_create
(
vlc_object_t
*
,
void
*
(
*
)
(
vlc_object_t
*
),
int
)
VLC_USED
VLC_DEPRECATED
;
VLC_API
int
vlc_thread_set_priority
(
vlc_object_t
*
,
int
)
VLC_DEPRECATED
;
VLC_API
void
vlc_thread_join
(
vlc_object_t
*
)
VLC_DEPRECATED
;
VLC_API
int
vlc_clone
(
vlc_thread_t
*
,
void
*
(
*
)
(
void
*
),
void
*
,
int
)
VLC_USED
;
VLC_API
void
vlc_cancel
(
vlc_thread_t
);
...
...
@@ -393,15 +392,9 @@ static inline void barrier (void)
#endif
}
#define vlc_thread_create( P_THIS, FUNC, PRIORITY ) \
vlc_thread_create( VLC_OBJECT(P_THIS), FUNC, PRIORITY )
#define vlc_thread_set_priority( P_THIS, PRIORITY ) \
vlc_thread_set_priority( VLC_OBJECT(P_THIS), PRIORITY )
#define vlc_thread_join( P_THIS ) \
vlc_thread_join( VLC_OBJECT(P_THIS) )
#ifdef __cplusplus
/**
* Helper C++ class to lock a mutex.
...
...
src/libvlc.h
View file @
5dc38d35
...
...
@@ -49,6 +49,12 @@ void system_End ( libvlc_int_t * );
int
vlc_clone_detach
(
vlc_thread_t
*
,
void
*
(
*
)(
void
*
),
void
*
,
int
);
/* Hopefully, no need to export this. There is a new thread API instead. */
int
vlc_thread_create
(
vlc_object_t
*
,
void
*
(
*
)
(
vlc_object_t
*
),
int
)
VLC_USED
VLC_DEPRECATED
;
void
vlc_thread_join
(
vlc_object_t
*
)
VLC_DEPRECATED
;
#define vlc_thread_create( P_THIS, FUNC, PRIORITY ) \
vlc_thread_create( VLC_OBJECT(P_THIS), FUNC, PRIORITY )
#define vlc_thread_join( P_THIS ) \
vlc_thread_join( VLC_OBJECT(P_THIS) )
void
vlc_thread_cancel
(
vlc_object_t
*
);
int
vlc_object_waitpipe
(
vlc_object_t
*
obj
);
...
...
src/libvlccore.sym
View file @
5dc38d35
...
...
@@ -608,8 +608,6 @@ vlc_sd_Start
vlc_sd_Stop
vlc_tdestroy
vlc_testcancel
vlc_thread_create
vlc_thread_join
vlc_thread_set_priority
vlc_threadvar_create
vlc_threadvar_delete
...
...
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