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
11ca4233
Commit
11ca4233
authored
Sep 20, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print object address - easier when debugging
parent
2f302ff4
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
13 deletions
+9
-13
src/misc/objects.c
src/misc/objects.c
+9
-13
No files found.
src/misc/objects.c
View file @
11ca4233
...
@@ -595,7 +595,7 @@ void * __vlc_object_find( vlc_object_t *p_this, int i_type, int i_mode )
...
@@ -595,7 +595,7 @@ void * __vlc_object_find( vlc_object_t *p_this, int i_type, int i_mode )
* Beware that objects found in this manner can be "owned" by another thread,
* Beware that objects found in this manner can be "owned" by another thread,
* be of _any_ type, and be attached to any module (if any). With such an
* be of _any_ type, and be attached to any module (if any). With such an
* object reference, you can set or get object variables, emit log messages,
* object reference, you can set or get object variables, emit log messages,
* and read write-once object parameters (
i_object_id,
psz_object_type, etc).
* and read write-once object parameters (psz_object_type, etc).
* You CANNOT cast the object to a more specific object type, and you
* You CANNOT cast the object to a more specific object type, and you
* definitely cannot invoke object type-specific callbacks with this.
* definitely cannot invoke object type-specific callbacks with this.
*
*
...
@@ -709,8 +709,8 @@ void __vlc_object_release( vlc_object_t *p_this )
...
@@ -709,8 +709,8 @@ void __vlc_object_release( vlc_object_t *p_this )
{
{
/* We are leaking this object */
/* We are leaking this object */
fprintf
(
stderr
,
fprintf
(
stderr
,
"ERROR: leaking object (
id:%i
, type:%s, name:%s)
\n
"
,
"ERROR: leaking object (
%p
, type:%s, name:%s)
\n
"
,
leaked
->
i_object_id
,
leaked
->
psz_object_type
,
leaked
,
leaked
->
psz_object_type
,
leaked
->
psz_object_name
);
leaked
->
psz_object_name
);
/* Dump object to ease debugging */
/* Dump object to ease debugging */
vlc_object_dump
(
leaked
);
vlc_object_dump
(
leaked
);
...
@@ -944,13 +944,9 @@ static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
...
@@ -944,13 +944,9 @@ static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
{
{
char
*
end
;
char
*
end
;
int
i_id
=
strtol
(
newval
.
psz_string
,
&
end
,
0
);
int
i_id
=
strtol
(
newval
.
psz_string
,
&
end
,
0
);
if
(
!*
end
)
p_object
=
vlc_object_get
(
p_libvlc
,
i_id
);
else
/* try using the object's name to find it */
/* try using the object's name to find it */
p_object
=
vlc_object_find_name
(
p_this
,
newval
.
psz_string
,
p_object
=
vlc_object_find_name
(
p_this
,
newval
.
psz_string
,
FIND_ANYWHERE
);
FIND_ANYWHERE
);
if
(
!
p_object
)
if
(
!
p_object
)
{
{
return
VLC_ENOOBJ
;
return
VLC_ENOOBJ
;
...
@@ -1241,10 +1237,10 @@ static void PrintObject( vlc_object_t *p_this, const char *psz_prefix )
...
@@ -1241,10 +1237,10 @@ static void PrintObject( vlc_object_t *p_this, const char *psz_prefix )
psz_parent
[
0
]
=
'\0'
;
psz_parent
[
0
]
=
'\0'
;
if
(
p_this
->
p_parent
)
if
(
p_this
->
p_parent
)
snprintf
(
psz_parent
,
19
,
", parent %
i"
,
p_this
->
p_parent
->
i_object_id
);
snprintf
(
psz_parent
,
19
,
", parent %
p"
,
p_this
->
p_parent
);
printf
(
" %so %
.8i
%s%s%s%s%s%s
\n
"
,
psz_prefix
,
printf
(
" %so %
p
%s%s%s%s%s%s
\n
"
,
psz_prefix
,
p_this
->
i_object_id
,
p_this
->
psz_object_type
,
p_this
,
p_this
->
psz_object_type
,
psz_name
,
psz_thread
,
psz_refcount
,
psz_children
,
psz_name
,
psz_thread
,
psz_refcount
,
psz_children
,
psz_parent
);
psz_parent
);
vlc_restorecancel
(
canc
);
vlc_restorecancel
(
canc
);
...
...
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