| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- /*
- * Copyright (C) 2019 Intel Corporation. All rights reserved.
- * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- */
- #include "bh_time.h"
- #include <unistd.h>
- #include <stdio.h>
- #include <time.h>
- /*
- * This function returns milliseconds per tick.
- * @return milliseconds per tick.
- */
- uint64 _bh_time_get_tick_millisecond()
- {
- //TODO:
- return 0;
- }
- /*
- * This function returns milliseconds after boot.
- * @return milliseconds after boot.
- */
- uint64 _bh_time_get_boot_millisecond()
- {
- //TODO
- return 0;
- }
- uint32 bh_get_tick_sec()
- {
- //TODO
- return 0;
- }
- /*
- * This function returns GMT time milliseconds since from 1970.1.1, AKA UNIX time.
- * @return milliseconds since from 1970.1.1.
- */
- uint64 _bh_time_get_millisecond_from_1970()
- {
- //TODO
- return 0;
- }
- size_t _bh_time_strftime(char *s, size_t max, const char *format, int64 time)
- {
- //TODO
- return 0;
- }
|