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
3d9d5739
Commit
3d9d5739
authored
Aug 05, 2005
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/misc/objects.c: More verbosity to debug unreleased objects.
parent
bcff7cfc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
src/misc/objects.c
src/misc/objects.c
+13
-7
No files found.
src/misc/objects.c
View file @
3d9d5739
...
@@ -342,17 +342,23 @@ void __vlc_object_destroy( vlc_object_t *p_this )
...
@@ -342,17 +342,23 @@ void __vlc_object_destroy( vlc_object_t *p_this )
/* Don't warn immediately ... 100ms seems OK */
/* Don't warn immediately ... 100ms seems OK */
if
(
i_delay
==
2
)
if
(
i_delay
==
2
)
{
{
msg_Warn
(
p_this
,
"refcount is %i, delaying before deletion"
,
msg_Warn
(
p_this
,
p_this
->
i_refcount
);
"refcount is %i, delaying before deletion (id=%d,type=%d)"
,
p_this
->
i_refcount
,
p_this
->
i_object_id
,
p_this
->
i_object_type
);
}
}
else
if
(
i_delay
==
1
2
)
else
if
(
i_delay
==
1
0
)
{
{
msg_Err
(
p_this
,
"refcount is %i, I have a bad feeling about this"
,
msg_Err
(
p_this
,
p_this
->
i_refcount
);
"refcount is %i, delaying again (id=%d,type=%d)"
,
p_this
->
i_refcount
,
p_this
->
i_object_id
,
p_this
->
i_object_type
);
}
}
else
if
(
i_delay
==
42
)
else
if
(
i_delay
==
20
)
{
{
msg_Err
(
p_this
,
"we waited too long, cancelling destruction"
);
msg_Err
(
p_this
,
"we waited too long, cancelling destruction (id=%d,type=%d)"
,
p_this
->
i_object_id
,
p_this
->
i_object_type
);
return
;
return
;
}
}
...
...
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