use uint32_t instead of __uint32_t

This commit is contained in:
Koichi Sasada 2023-10-13 14:39:53 +09:00
parent 842d9c0afc
commit d8a74207e7

View File

@ -562,7 +562,7 @@ timer_thread_register_waiting(rb_thread_t *th, int fd, enum thread_sched_waiting
flags |= thread_sched_waiting_timeout;
}
__uint32_t epoll_events = 0;
uint32_t epoll_events = 0;
if (flags & thread_sched_waiting_timeout) {
VM_ASSERT(rel != NULL);
abs = rb_hrtime_add(rb_hrtime_now(), *rel);