handle_close - close a handle
#include <magenta/syscalls.h>
mx_status_t mx_handle_close(mx_handle_t handle);
handle_close() closes a handle, causing the underlying object to be reclaimed by the kernel if no other handles to it exist.
handle_close() returns NO_ERROR on success.
ERR_BAD_HANDLE handle isn't a valid handle.