alios_time.c 354 B

12345678910111213141516171819
  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_us()
  8. {
  9. return (uint64)aos_now_ms() * 1000;
  10. }
  11. uint64
  12. os_time_thread_cputime_us(void)
  13. {
  14. /* FIXME if u know the right api */
  15. return os_time_get_boot_us();
  16. }