Perform a basic read of the clock.
#include <zircon/syscalls.h> zx_status_t zx_clock_read(zx_handle_t handle, zx_time_t* now);
handle must be of type ZX_OBJ_TYPE_CLOCK and have ZX_RIGHT_READ.
Perform a basic read of the clock object and return its current time in the now out parameter.
On success, returns ZX_OK along with the clock's current time in the now output parameter.