handle_replace - replace a handle
#include <magenta/syscalls.h>
mx_status_t mx_handle_replace(mx_handle_t handle, mx_rights_t rights, mx_handle_t* out);
handle_replace() creates a replacement for handle, referring to the same underlying object, with new access rights rights. On success, handle is invalidated.
If rights is MX_RIGHT_SAME_RIGHTS, the replacement handle will have the same rights as the original handle. Otherwise, rights must be a subset of original handle's rights.
handle_replace() returns MX_OK and the replacement handle (via *out) on success.
MX_ERR_BAD_HANDLE handle isn't a valid handle.
MX_ERR_INVALID_ARGS The rights requested are not a subset of handle's rights or out is an invalid pointer.
MX_ERR_NO_MEMORY (Temporary) out of memory situation.