摘要
取消固定页面并撤消设备对页面的访问权限。
声明
#include <zircon/syscalls.h>
zx_status_t zx_pmt_unpin(zx_handle_t handle);
说明
zx_pmt_unpin()
会取消固定之前由zx_bti_pin()
固定的网页,
并撤消 PIN 码调用授予的访问权限。
始终使用 handle。之后使用 handle 是无效的,包括
对其调用 zx_handle_close()
。
权限
TODO(https://fxbug.dev/42107318)
返回值
成功后,zx_pmt_unpin()
会返回 ZX_OK
。
如果失败,则返回负的错误值。
错误
ZX_ERR_BAD_HANDLE
handle 不是有效的句柄。
“ZX_ERR_WRONG_TYPE
”handle 不是 PMT 句柄。