Added some comments
authorceriel <none@none>
Thu, 9 Feb 1989 15:58:34 +0000 (15:58 +0000)
committerceriel <none@none>
Thu, 9 Feb 1989 15:58:34 +0000 (15:58 +0000)
util/LLgen/src/alloc.c

index b684da5..cbd3a44 100644 (file)
@@ -69,10 +69,16 @@ new_mem(p) register p_info p; {
        if (p->i_max >= p->i_top) {     /* No more free elements */
                sz = p->i_size;
 #if BIGMACHINE
+               /*
+                  Do not worry about size. Just double it.
+                */
                p->i_size += p->i_size;
                if (! p->i_size)
                        p->i_size += p->i_incr * p->i_esize;
 #else
+               /*
+                  Worry about size, so only increment in chunks of i_incr.
+                */
                p->i_size += p->i_incr * p->i_esize;
 #endif
                p->i_ptr = !p->i_ptr ?