Skip to main content

test_helper_bindings/
test_helper_bindings.rs

1// Copyright 2026 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// This file is automatically generated by //zircon/kernel/vm:_kernel_bindgen_crate.test-helper-bindings.bindgen.
6
7#![no_std]
8use vm_object_paged_bindings::VmObjectPaged;
9use zx_types::zx_status_t;
10
11unsafe extern "C" {
12    pub fn cpp_make_committed_pager_vmo(
13        num_pages: usize,
14        trap_dirty: bool,
15        resizable: bool,
16        out_pages: *mut *mut ::core::ffi::c_void,
17        out_vmo: *mut *mut VmObjectPaged,
18    ) -> zx_status_t;
19}