summaryrefslogtreecommitdiff
path: root/thread_pthread_mn.c
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2023-10-13 14:39:53 +0900
committerKoichi Sasada <ko1@atdot.net>2023-10-13 15:59:09 +0900
commitd8a74207e7a4e4ae92b33b0a12a5351270ebbe75 (patch)
tree776b79ea2331fb6fcb6da578cb40bedec70040d5 /thread_pthread_mn.c
parent842d9c0afc525ef02396bf86c722da675bc6f69f (diff)
use `uint32_t` instead of `__uint32_t`
Diffstat (limited to 'thread_pthread_mn.c')
-rw-r--r--thread_pthread_mn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_pthread_mn.c b/thread_pthread_mn.c
index 8aaa1b8337..8dadb269de 100644
--- a/thread_pthread_mn.c
+++ b/thread_pthread_mn.c
@@ -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);