fix info reported by memory manager under DL_MALLOC and SYSTEM_MALLOC

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1635 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2006-05-18 16:33:05 +00:00
parent ef80f1df70
commit ee78d90bb9
11 changed files with 77 additions and 23 deletions

View File

@@ -11,8 +11,11 @@
* File: cdmgr.c *
* comments: Code manager *
* *
* Last rev: $Date: 2006-04-29 01:15:18 $,$Author: vsc $ *
* Last rev: $Date: 2006-05-18 16:33:04 $,$Author: vsc $ *
* $Log: not supported by cvs2svn $
* Revision 1.187 2006/04/29 01:15:18 vsc
* fix expand_consult patch
*
* Revision 1.186 2006/04/28 17:53:44 vsc
* fix the expand_consult patch
*
@@ -5463,10 +5466,14 @@ p_choicepoint_info(void)
case _retry3:
case _retry4:
case _trust_logical_pred:
pe = NULL;
t = TermNil;
ipc = NEXTOP(ipc,l);
go_on = TRUE;
break;
case _jump:
pe = NULL;
t = TermNil;
ipc = ipc->u.l.l;
go_on = TRUE;
break;
@@ -5477,6 +5484,8 @@ p_choicepoint_info(void)
break;
case _retry_profiled:
case _count_retry:
pe = NULL;
t = TermNil;
ipc = NEXTOP(ipc,p);
go_on = TRUE;
break;
@@ -5497,6 +5506,7 @@ p_choicepoint_info(void)
case _Ystop:
default:
pe = NULL;
t = TermNil;
return FALSE;
}
}