Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-dev-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-dev-tools
Commits
9d948ec8
Commit
9d948ec8
authored
10 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
Valgrind suppressions file
parent
8741deb5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config/analysis/valgrind.supp
+117
-0
117 additions, 0 deletions
config/analysis/valgrind.supp
with
117 additions
and
0 deletions
config/analysis/valgrind.supp
0 → 100644
+
117
−
0
View file @
9d948ec8
##----------------------------------------------------------------------##
# Blender's BLI_mempool
#
# Blender can be built WITH_MEM_VALGRIND.
# This causes internal operations to raise false-positives.
{
BLI_mempool_alloc_A8
Memcheck:Addr8
fun:BLI_mempool_alloc
fun:*
}
{
BLI_mempool_alloc_A4
Memcheck:Addr4
fun:BLI_mempool_alloc
fun:*
}
{
BLI_mempool_add_A8
Memcheck:Addr8
fun:mempool_chunk_add
fun:*
}
{
BLI_mempool_add_A4
Memcheck:Addr4
fun:mempool_chunk_add
fun:*
}
{
BLI_mempool_iterstep_A4
Memcheck:Addr4
fun:BLI_mempool_iterstep
fun:*
}
##----------------------------------------------------------------------##
# Python Calls aren't so useful unless we're debugging Python it's self
# _PyObject_Free
{
PyFree_C
Memcheck:Cond
fun:_PyObject_Free
fun:*
}
{
PyFree_A4
Memcheck:Addr4
fun:_PyObject_Free
fun:*
}
{
PyFree_A8
Memcheck:Addr8
fun:_PyObject_Free
fun:*
}
{
PyFree_V4
Memcheck:Value4
fun:_PyObject_Free
fun:*
}
{
PyFree_V8
Memcheck:Value8
fun:_PyObject_Free
fun:*
}
# _PyObject_Realloc
{
PyRealloc_C
Memcheck:Cond
fun:_PyObject_Realloc
fun:*
}
{
PyRealloc_A4
Memcheck:Addr4
fun:_PyObject_Realloc
fun:*
}
{
PyRealloc_A8
Memcheck:Addr8
fun:_PyObject_Realloc
fun:*
}
{
PyRealloc_V4
Memcheck:Value4
fun:_PyObject_Realloc
fun:*
}
{
PyRealloc_V8
Memcheck:Value8
fun:_PyObject_Realloc
fun:*
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment