Skip to content
PageAllocatorDeinit

PageAllocatorDeinit

Description

Teardown for PageAllocator. Stateless; expands to a no-op. Provided for API symmetry with the stateful allocators.

Usage example (Cross-references)

Usage examples (Cross-references)
        }
    
        PageAllocatorDeinit(&alloc);
        return ok;
    }
        }
    
        PageAllocatorDeinit(&alloc);
        return ok;
    }
        ok = ok && (VecLen(&v) == 1024) && (VecAt(&v, 0) == 0) && (VecAt(&v, 1023) == 1023);
        VecDeinit(&v);
        PageAllocatorDeinit(&alloc);
        return ok;
    }
        }
    
        PageAllocatorDeinit(&alloc);
        return ok;
    }
Last updated on