Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
955b873d
Commit
955b873d
authored
Oct 21, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Remove useless global variable
- Fix threading qualifier warnings
parent
41f75f96
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
29 deletions
+16
-29
include/vlc_symbols.h
include/vlc_symbols.h
+5
-5
include/vlc_threads_funcs.h
include/vlc_threads_funcs.h
+5
-5
src/misc/threads.c
src/misc/threads.c
+6
-19
No files found.
include/vlc_symbols.h
View file @
955b873d
...
...
@@ -334,13 +334,13 @@ struct module_symbols_t
int
(
*
__vlc_threads_init_inner
)
(
vlc_object_t
*
);
int
(
*
__vlc_threads_end_inner
)
(
vlc_object_t
*
);
int
(
*
__vlc_mutex_init_inner
)
(
vlc_object_t
*
,
vlc_mutex_t
*
);
int
(
*
__vlc_mutex_destroy_inner
)
(
char
*
,
int
,
vlc_mutex_t
*
);
int
(
*
__vlc_mutex_destroy_inner
)
(
c
onst
c
har
*
,
int
,
vlc_mutex_t
*
);
int
(
*
__vlc_cond_init_inner
)
(
vlc_object_t
*
,
vlc_cond_t
*
);
int
(
*
__vlc_cond_destroy_inner
)
(
char
*
,
int
,
vlc_cond_t
*
);
int
(
*
__vlc_thread_create_inner
)
(
vlc_object_t
*
,
c
har
*
,
int
,
char
*
,
void
*
(
*
)
(
void
*
),
int
,
vlc_bool_t
);
int
(
*
__vlc_thread_set_priority_inner
)
(
vlc_object_t
*
,
char
*
,
int
,
int
);
int
(
*
__vlc_cond_destroy_inner
)
(
c
onst
c
har
*
,
int
,
vlc_cond_t
*
);
int
(
*
__vlc_thread_create_inner
)
(
vlc_object_t
*
,
c
onst
char
*
,
int
,
const
char
*
,
void
*
(
*
)
(
void
*
),
int
,
vlc_bool_t
);
int
(
*
__vlc_thread_set_priority_inner
)
(
vlc_object_t
*
,
c
onst
c
har
*
,
int
,
int
);
void
(
*
__vlc_thread_ready_inner
)
(
vlc_object_t
*
);
void
(
*
__vlc_thread_join_inner
)
(
vlc_object_t
*
,
char
*
,
int
);
void
(
*
__vlc_thread_join_inner
)
(
vlc_object_t
*
,
c
onst
c
har
*
,
int
);
void
(
*
__vout_CopyPicture_inner
)
(
vlc_object_t
*
p_this
,
picture_t
*
p_dst
,
picture_t
*
p_src
);
int
(
*
__vout_InitPicture_inner
)
(
vlc_object_t
*
p_this
,
picture_t
*
p_pic
,
uint32_t
i_chroma
,
int
i_width
,
int
i_height
,
int
i_aspect
);
int
(
*
__vout_AllocatePicture_inner
)
(
vlc_object_t
*
p_this
,
picture_t
*
p_pic
,
uint32_t
i_chroma
,
int
i_width
,
int
i_height
,
int
i_aspect
);
...
...
include/vlc_threads_funcs.h
View file @
955b873d
...
...
@@ -31,13 +31,13 @@
VLC_EXPORT
(
int
,
__vlc_threads_init
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_threads_end
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_mutex_init
,
(
vlc_object_t
*
,
vlc_mutex_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_mutex_destroy
,
(
char
*
,
int
,
vlc_mutex_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_mutex_destroy
,
(
c
onst
c
har
*
,
int
,
vlc_mutex_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_cond_init
,
(
vlc_object_t
*
,
vlc_cond_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_cond_destroy
,
(
char
*
,
int
,
vlc_cond_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_thread_create
,
(
vlc_object_t
*
,
c
har
*
,
int
,
char
*
,
void
*
(
*
)
(
void
*
),
int
,
vlc_bool_t
)
);
VLC_EXPORT
(
int
,
__vlc_thread_set_priority
,
(
vlc_object_t
*
,
char
*
,
int
,
int
)
);
VLC_EXPORT
(
int
,
__vlc_cond_destroy
,
(
c
onst
c
har
*
,
int
,
vlc_cond_t
*
)
);
VLC_EXPORT
(
int
,
__vlc_thread_create
,
(
vlc_object_t
*
,
c
onst
char
*
,
int
,
const
char
*
,
void
*
(
*
)
(
void
*
),
int
,
vlc_bool_t
)
);
VLC_EXPORT
(
int
,
__vlc_thread_set_priority
,
(
vlc_object_t
*
,
c
onst
c
har
*
,
int
,
int
)
);
VLC_EXPORT
(
void
,
__vlc_thread_ready
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
void
,
__vlc_thread_join
,
(
vlc_object_t
*
,
char
*
,
int
)
);
VLC_EXPORT
(
void
,
__vlc_thread_join
,
(
vlc_object_t
*
,
c
onst
c
har
*
,
int
)
);
/*****************************************************************************
...
...
src/misc/threads.c
View file @
955b873d
...
...
@@ -49,19 +49,6 @@ static vlc_object_t *p_root;
#elif defined( HAVE_CTHREADS_H )
#endif
/*****************************************************************************
* Global variable for named mutexes
*****************************************************************************/
typedef
struct
vlc_namedmutex_t
vlc_namedmutex_t
;
struct
vlc_namedmutex_t
{
vlc_mutex_t
lock
;
char
*
psz_name
;
int
i_usage
;
vlc_namedmutex_t
*
p_next
;
};
/*****************************************************************************
* vlc_threads_init: initialize threads system
*****************************************************************************
...
...
@@ -304,7 +291,7 @@ int __vlc_mutex_init( vlc_object_t *p_this, vlc_mutex_t *p_mutex )
/*****************************************************************************
* vlc_mutex_destroy: destroy a mutex, inner version
*****************************************************************************/
int
__vlc_mutex_destroy
(
char
*
psz_file
,
int
i_line
,
vlc_mutex_t
*
p_mutex
)
int
__vlc_mutex_destroy
(
c
onst
c
har
*
psz_file
,
int
i_line
,
vlc_mutex_t
*
p_mutex
)
{
int
i_result
;
/* In case of error : */
...
...
@@ -461,7 +448,7 @@ int __vlc_cond_init( vlc_object_t *p_this, vlc_cond_t *p_condvar )
/*****************************************************************************
* vlc_cond_destroy: destroy a condition, inner version
*****************************************************************************/
int
__vlc_cond_destroy
(
char
*
psz_file
,
int
i_line
,
vlc_cond_t
*
p_condvar
)
int
__vlc_cond_destroy
(
c
onst
c
har
*
psz_file
,
int
i_line
,
vlc_cond_t
*
p_condvar
)
{
int
i_result
;
/* In case of error : */
...
...
@@ -519,8 +506,8 @@ int __vlc_cond_destroy( char * psz_file, int i_line, vlc_cond_t *p_condvar )
* Note that i_priority is only taken into account on platforms supporting
* userland real-time priority threads.
*****************************************************************************/
int
__vlc_thread_create
(
vlc_object_t
*
p_this
,
char
*
psz_file
,
int
i_line
,
char
*
psz_name
,
void
*
(
*
func
)
(
void
*
),
int
__vlc_thread_create
(
vlc_object_t
*
p_this
,
c
onst
c
har
*
psz_file
,
int
i_line
,
c
onst
c
har
*
psz_name
,
void
*
(
*
func
)
(
void
*
),
int
i_priority
,
vlc_bool_t
b_wait
)
{
int
i_ret
;
...
...
@@ -645,7 +632,7 @@ int __vlc_thread_create( vlc_object_t *p_this, char * psz_file, int i_line,
* vlc_thread_set_priority: set the priority of the current thread when we
* couldn't set it in vlc_thread_create (for instance for the main thread)
*****************************************************************************/
int
__vlc_thread_set_priority
(
vlc_object_t
*
p_this
,
char
*
psz_file
,
int
__vlc_thread_set_priority
(
vlc_object_t
*
p_this
,
c
onst
c
har
*
psz_file
,
int
i_line
,
int
i_priority
)
{
#if defined( PTH_INIT_IN_PTH_H ) || defined( ST_INIT_IN_ST_H )
...
...
@@ -707,7 +694,7 @@ void __vlc_thread_ready( vlc_object_t *p_this )
/*****************************************************************************
* vlc_thread_join: wait until a thread exits, inner version
*****************************************************************************/
void
__vlc_thread_join
(
vlc_object_t
*
p_this
,
char
*
psz_file
,
int
i_line
)
void
__vlc_thread_join
(
vlc_object_t
*
p_this
,
c
onst
c
har
*
psz_file
,
int
i_line
)
{
int
i_ret
=
0
;
...
...
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