alios_time.c 247 B

12345678910111213
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #include "platform_api_vmcore.h"
  6. uint64
  7. os_time_get_boot_microsecond()
  8. {
  9. return (uint64)aos_now_ms() * 1000;
  10. }