* src/misc/bddalloc.cc (bdd_allocator::initialize):
Disable the default GC handler. Reported by Kristin Yvonne Rozier <kyrozier@cs.rice.edu>.
This commit is contained in:
parent
894c864fd5
commit
089c315c28
2 changed files with 11 additions and 0 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
2007-09-19 Alexandre Duret-Lutz <adl@gnu.org>
|
||||||
|
|
||||||
|
* src/misc/bddalloc.cc (bdd_allocator::initialize):
|
||||||
|
Disable the default GC handler. Reported by
|
||||||
|
Kristin Yvonne Rozier <kyrozier@cs.rice.edu>.
|
||||||
|
|
||||||
2007-07-26 Alexandre Duret-Lutz <adl@gnu.org>
|
2007-07-26 Alexandre Duret-Lutz <adl@gnu.org>
|
||||||
|
|
||||||
* src/tgbatest/ltl2tgba.cc (main): Correctly destroy unobservable
|
* src/tgbatest/ltl2tgba.cc (main): Correctly destroy unobservable
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@
|
||||||
|
|
||||||
namespace spot
|
namespace spot
|
||||||
{
|
{
|
||||||
|
|
||||||
bool bdd_allocator::initialized = false;
|
bool bdd_allocator::initialized = false;
|
||||||
|
|
||||||
bdd_allocator::bdd_allocator()
|
bdd_allocator::bdd_allocator()
|
||||||
|
|
@ -49,6 +50,10 @@ namespace spot
|
||||||
// for large examples advocated by the BuDDy manual.
|
// for large examples advocated by the BuDDy manual.
|
||||||
bdd_init(1000000, 10000);
|
bdd_init(1000000, 10000);
|
||||||
bdd_setvarnum(2);
|
bdd_setvarnum(2);
|
||||||
|
// Disable the default GC handler. (Note that this will only be
|
||||||
|
// done if Buddy is initialized by Spot. Otherwise we prefer not
|
||||||
|
// to overwrite a handler that might have been set by the user.)
|
||||||
|
bdd_gbc_hook(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue