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

Diff for /OpenXM_contrib/gc/Attic/malloc.c between version 1.1.1.2 and 1.1.1.3

version 1.1.1.2, 2000/04/14 11:07:59 version 1.1.1.3, 2000/12/01 14:48:25
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.1.2  
changed lines
  Added in v.1.1.1.3

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