W3cubDocs

/Rust

Function std::alloc::alloc_zeroed

pub unsafe fn alloc_zeroed(layout: Layout) -> *mut u8

Allocate zero-initialized memory with the global allocator.

This function forwards calls to the GlobalAlloc::alloc_zeroed method of the allocator registered with the #[global_allocator] attribute if there is one, or the std crate’s default.

This function is expected to be deprecated in favor of the alloc_zeroed method of the Global type when it and the AllocRef trait become stable.

Safety

See GlobalAlloc::alloc_zeroed.

Examples

use std::alloc::{alloc_zeroed, dealloc, Layout};

unsafe {
    let layout = Layout::new::<u16>();
    let ptr = alloc_zeroed(layout);

    assert_eq!(*(ptr as *mut u16), 0);

    dealloc(ptr, layout);
}

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/alloc/fn.alloc_zeroed.html