https://gitlab.inria.fr/cado-nfs/cado-nfs
Revision 83b03af1ced68058623c0727d0ed7510588e177b authored by Pierrick Gaudry on 24 February 2016, 15:17:45 UTC, committed by Pierrick Gaudry on 24 February 2016, 15:17:45 UTC
1 parent a9e7de9
Raw File
Tip revision: 83b03af1ced68058623c0727d0ed7510588e177b authored by Pierrick Gaudry on 24 February 2016, 15:17:45 UTC
Rewrote misc/descent-init.c to make it more like a library.
Tip revision: 83b03af
cado-nfs.supp
# This is a suppression file for valgrind

# In order to generate it, re-run valgrind as follows:
# valgrind --leak-check=full --gen-suppressions=all ./my_program arg1 # arg2 ... 
# The "..." joker matches several possible lines in the call trace.

{
   hwloc_is_known_to_leak_a_bit_mangled_names
   Memcheck:Leak
   match-leak-kinds: definite
   fun:malloc
   ...
   fun:hwloc_topology_init
   fun:_ZN9cpubinderC1ERSo
   fun:cpubinding_get_info
   fun:pi_init_mpilevel
}

{
   hwloc_is_known_to_leak_a_bit_unmangled_names
   Memcheck:Leak
   match-leak-kinds: definite
   fun:malloc
   ...
   fun:hwloc_topology_init
   fun:cpubinder
   fun:cpubinding_get_info
   fun:pi_init_mpilevel
   fun:pi_go_inner_not_interleaved
}
{
   openmp_leak
   Memcheck:Leak
   match-leak-kinds: possible
   fun:calloc
   fun:allocate_dtv
   fun:_dl_allocate_tls
   fun:allocate_stack
   fun:pthread_create*
   ...
   fun:GOMP_parallel
   ...
   fun:main
}

back to top