-
-
Save H4niz/f6dec668037d9eb3ab548f31ce124e3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
If not the first time through, we require old_size to be | |
at least MINSIZE and to have prev_inuse set. | |
*/ | |
assert ((old_top == initial_top (av) && old_size == 0) || | |
((unsigned long) (old_size) >= MINSIZE && | |
prev_inuse (old_top) && | |
((unsigned long) old_end & (pagesize - 1)) == 0)); | |
/* Precondition: not enough current space to satisfy nb request */ | |
assert ((unsigned long) (old_size) < (unsigned long) (nb + MINSIZE)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment