[BACK]Return to malloc.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc

Diff for /OpenXM_contrib2/asir2000/gc/malloc.c between version 1.1 and 1.2

version 1.1, 1999/12/03 07:39:09 version 1.2, 2000/12/01 09:26:11
Line 81  register ptr_t *opp;
Line 81  register ptr_t *opp;
         /* but that's benign.                           */          /* but that's benign.                           */
         /* Volatile declarations may need to be added   */          /* Volatile declarations may need to be added   */
         /* to prevent the compiler from breaking things.*/          /* to prevent the compiler from breaking things.*/
           /* If we only execute the second of the         */
           /* following assignments, we lose the free      */
           /* list, but that should still be OK, at least  */
           /* for garbage collected memory.                */
         *opp = obj_link(op);          *opp = obj_link(op);
         obj_link(op) = 0;          obj_link(op) = 0;
     } else {      } else {

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>