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
01dde395
Commit
01dde395
authored
Aug 31, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport vlc_object_dump
parent
7dfd6436
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
9 deletions
+2
-9
include/vlc_objects.h
include/vlc_objects.h
+0
-7
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/misc/objects.c
src/misc/objects.c
+2
-1
No files found.
include/vlc_objects.h
View file @
01dde395
...
...
@@ -92,9 +92,6 @@ VLC_EXPORT( vlc_list_t *, __vlc_list_find, ( vlc_object_t *, int, int ) );
VLC_EXPORT
(
vlc_list_t
*
,
__vlc_list_children
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
void
,
vlc_list_release
,
(
vlc_list_t
*
)
);
/* __vlc_object_dump */
VLC_EXPORT
(
void
,
__vlc_object_dump
,
(
vlc_object_t
*
p_this
)
);
/*}@*/
#define vlc_object_create(a,b) \
...
...
@@ -127,10 +124,6 @@ VLC_EXPORT( void, __vlc_object_dump, ( vlc_object_t *p_this ) );
#define vlc_list_children(a) \
__vlc_list_children( VLC_OBJECT(a) )
#define vlc_object_dump(a) \
__vlc_object_dump( VLC_OBJECT(a))
/* Objects and threading */
VLC_EXPORT
(
void
,
__vlc_object_lock
,
(
vlc_object_t
*
)
);
#define vlc_object_lock( obj ) \
...
...
src/libvlccore.sym
View file @
01dde395
...
...
@@ -466,7 +466,6 @@ vlc_mutex_init_recursive
__vlc_object_attach
__vlc_object_create
__vlc_object_detach
__vlc_object_dump
__vlc_object_find
__vlc_object_find_name
vlc_object_get
...
...
src/misc/objects.c
View file @
01dde395
...
...
@@ -83,6 +83,7 @@ static void ListChildren ( vlc_list_t *, vlc_object_t *, int );
static
void
vlc_object_destroy
(
vlc_object_t
*
p_this
);
static
void
vlc_object_detach_unlocked
(
vlc_object_t
*
p_this
);
static
void
vlc_object_dump
(
vlc_object_t
*
p_this
)
/*****************************************************************************
* Local structure lock
...
...
@@ -1099,7 +1100,7 @@ void vlc_list_release( vlc_list_t *p_list )
/*****************************************************************************
* dump an object. (Debug function)
*****************************************************************************/
void
__
vlc_object_dump
(
vlc_object_t
*
p_this
)
static
void
vlc_object_dump
(
vlc_object_t
*
p_this
)
{
char
psz_foo
[
2
*
MAX_DUMPSTRUCTURE_DEPTH
+
1
];
psz_foo
[
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