blob: 3b8677af7f846d573f43b61cd0c00219dd473a7a [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_SYS_BIN_PSUTILS_VMO_UTILS_H_
#define SRC_SYS_BIN_PSUTILS_VMO_UTILS_H_
#include <zircon/compiler.h>
#include <zircon/syscalls/object.h>
#include <zircon/types.h>
__BEGIN_CDECLS
// Reads the zx_info_vmo_t entries for the process.
// Caller is responsible for the |out_vmos| pointer.
zx_status_t get_vmos(zx_handle_t process, zx_info_vmo_t** out_vmos, size_t* out_count,
size_t* out_avail);
__END_CDECLS
#endif // SRC_SYS_BIN_PSUTILS_VMO_UTILS_H_