* src/kernel.c (bdd_default_gbchandler): Log garbage collection to
stderr, not stdout. Reported by Kristin Yvonne Rozier <kyrozier@cs.rice.edu>.
This commit is contained in:
parent
44e4beca2e
commit
894c864fd5
2 changed files with 9 additions and 3 deletions
|
|
@ -1,3 +1,9 @@
|
||||||
|
2007-09-19 Alexandre Duret-Lutz <adl@gnu.org>
|
||||||
|
|
||||||
|
* src/kernel.c (bdd_default_gbchandler): Log garbage collection to
|
||||||
|
stderr, not stdout. Reported by Kristin Yvonne Rozier
|
||||||
|
<kyrozier@cs.rice.edu>.
|
||||||
|
|
||||||
2004-07-23 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
2004-07-23 Alexandre Duret-Lutz <adl@src.lip6.fr>
|
||||||
|
|
||||||
* configure.ac: Call AC_LIBTOOL_WIN32_DLL
|
* configure.ac: Call AC_LIBTOOL_WIN32_DLL
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
========================================================================*/
|
========================================================================*/
|
||||||
|
|
||||||
/*************************************************************************
|
/*************************************************************************
|
||||||
$Header: /Volumes/CVS/repository/spot/spot/buddy/src/kernel.c,v 1.5 2003/05/22 15:07:27 aduret Exp $
|
$Header: /Volumes/CVS/repository/spot/spot/buddy/src/kernel.c,v 1.6 2007/09/19 18:58:20 adl Exp $
|
||||||
FILE: kernel.c
|
FILE: kernel.c
|
||||||
DESCR: implements the bdd kernel functions.
|
DESCR: implements the bdd kernel functions.
|
||||||
AUTH: Jorn Lind
|
AUTH: Jorn Lind
|
||||||
|
|
@ -991,9 +991,9 @@ void bdd_default_gbchandler(int pre, bddGbcStat *s)
|
||||||
{
|
{
|
||||||
if (!pre)
|
if (!pre)
|
||||||
{
|
{
|
||||||
printf("Garbage collection #%d: %d nodes / %d free",
|
fprintf(stderr, "Garbage collection #%d: %d nodes / %d free",
|
||||||
s->num, s->nodes, s->freenodes);
|
s->num, s->nodes, s->freenodes);
|
||||||
printf(" / %.1fs / %.1fs total\n",
|
fprintf(stderr, " / %.1fs / %.1fs total\n",
|
||||||
(float)s->time/(float)(CLOCKS_PER_SEC),
|
(float)s->time/(float)(CLOCKS_PER_SEC),
|
||||||
(float)s->sumtime/(float)CLOCKS_PER_SEC);
|
(float)s->sumtime/(float)CLOCKS_PER_SEC);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue