Arquivos
magenta/docs/syscalls/process_write_memory.md
Roland McGrath 7006ae1783 Remove mx_size_t and mx_ssize_t types
mx_ssize_t is no longer used.  mx_size_t is superfluous and
can be replaced by the standard C type size_t.

Change-Id: I2137af6f166099d2e8aaca4fab63ff101f2a43ac
2016-12-08 11:11:37 -08:00

408 B

mx_process_write_memory

NAME

process_write_memory - Write into the given process's address space.

SYNOPSIS

#include <magenta/syscalls.h>

mx_status_t mx_process_write_memory(mx_handle_t proc, uintptr_t vaddr,
                                    const void* buffer, size_t len,
                                    size_t* actual);

DESCRIPTION

RETURN VALUE

ERRORS

SEE ALSO