blob: 5c4431ca3a72b72183f765d85e87e7550c7413df [file] [log] [blame]
// Copyright 2016 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.
#pragma once
#include "garnet/lib/debugger_utils/byte_block.h"
namespace inferior_control {
class Process;
// The API for accessing process memory.
class ProcessMemory final : public debugger_utils::ByteBlock {
public:
explicit ProcessMemory(Process* process);
bool Read(uintptr_t address, void* out_buffer, size_t length) const override;
bool Write(uintptr_t address, const void* buffer,
size_t length) const override;
private:
Process* process_; // non-owning
FXL_DISALLOW_COPY_AND_ASSIGN(ProcessMemory);
};
} // namespace inferior_control