You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
266 B
C

#ifndef SKYNET_TIMER_H
#define SKYNET_TIMER_H
#include <stdint.h>
int skynet_timeout(uint32_t handle, int time, int session);
void skynet_updatetime(void);
uint32_t skynet_starttime(void);
uint64_t skynet_thread_time(void); // for profile, in micro second
#endif