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
247513ab
Commit
247513ab
authored
Jan 05, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove vlc_object_signal and unexport vlc_object_signal_unlocked
parent
8d1bbd5b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
14 deletions
+3
-14
include/vlc_objects.h
include/vlc_objects.h
+0
-13
src/libvlc.h
src/libvlc.h
+3
-0
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_objects.h
View file @
247513ab
...
...
@@ -135,19 +135,6 @@ VLC_EXPORT( void, __vlc_object_wait, ( vlc_object_t * ) );
#define vlc_object_wait( obj ) \
__vlc_object_wait( VLC_OBJECT( obj ) )
VLC_EXPORT
(
void
,
__vlc_object_signal_unlocked
,
(
vlc_object_t
*
)
);
#define vlc_object_signal_unlocked( obj ) \
__vlc_object_signal_unlocked( VLC_OBJECT( obj ) )
static
inline
void
__vlc_object_signal
(
vlc_object_t
*
obj
)
{
vlc_object_lock
(
obj
);
vlc_object_signal_unlocked
(
obj
);
vlc_object_unlock
(
obj
);
}
#define vlc_object_signal( obj ) \
__vlc_object_signal( VLC_OBJECT( obj ) )
VLC_EXPORT
(
void
,
__vlc_object_kill
,
(
vlc_object_t
*
)
);
#define vlc_object_kill(a) \
__vlc_object_kill( VLC_OBJECT(a) )
...
...
src/libvlc.h
View file @
247513ab
...
...
@@ -49,6 +49,9 @@ void system_End ( libvlc_int_t * );
/* Hopefully, no need to export this. There is a new thread API instead. */
void
vlc_thread_cancel
(
vlc_object_t
*
);
int
vlc_object_waitpipe
(
vlc_object_t
*
obj
);
void
__vlc_object_signal_unlocked
(
vlc_object_t
*
);
#define vlc_object_signal_unlocked( obj ) \
__vlc_object_signal_unlocked( VLC_OBJECT( obj ) )
void
vlc_trace
(
const
char
*
fn
,
const
char
*
file
,
unsigned
line
);
#define vlc_backtrace() vlc_trace(__func__, __FILE__, __LINE__)
...
...
src/libvlccore.sym
View file @
247513ab
...
...
@@ -491,7 +491,6 @@ __vlc_object_kill
__vlc_object_lock
__vlc_object_release
__vlc_object_set_destructor
__vlc_object_signal_unlocked
__vlc_object_unlock
__vlc_object_wait
vlc_poll
...
...
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