11cb0ef41Sopenharmony_ci#ifndef __UVWASI_CLOCKS_H__ 21cb0ef41Sopenharmony_ci#define __UVWASI_CLOCKS_H__ 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ci#include "wasi_types.h" 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ciuvwasi_errno_t uvwasi__clock_gettime_realtime(uvwasi_timestamp_t* time); 71cb0ef41Sopenharmony_ciuvwasi_errno_t uvwasi__clock_gettime_process_cputime(uvwasi_timestamp_t* time); 81cb0ef41Sopenharmony_ciuvwasi_errno_t uvwasi__clock_gettime_thread_cputime(uvwasi_timestamp_t* time); 91cb0ef41Sopenharmony_ci 101cb0ef41Sopenharmony_ciuvwasi_errno_t uvwasi__clock_getres_process_cputime(uvwasi_timestamp_t* time); 111cb0ef41Sopenharmony_ciuvwasi_errno_t uvwasi__clock_getres_thread_cputime(uvwasi_timestamp_t* time); 121cb0ef41Sopenharmony_ci 131cb0ef41Sopenharmony_ci#endif /* __UVWASI_CLOCKS_H__ */ 14