thread_win32.c: suppress warnings by -Wsuggest-attribute

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64159 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
k0kubun 2018-08-02 11:39:11 +00:00
Родитель 6f7b3de187
Коммит 6a9b63e390
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -779,13 +779,14 @@ rb_sigwait_fd_get(rb_thread_t *th)
return -1; /* TODO */ return -1; /* TODO */
} }
NORETURN(void rb_sigwait_fd_put(rb_thread_t *, int));
void void
rb_sigwait_fd_put(rb_thread_t *th, int fd) rb_sigwait_fd_put(rb_thread_t *th, int fd)
{ {
rb_bug("not implemented, should not be called"); rb_bug("not implemented, should not be called");
} }
NORETURN(void rb_sigwait_sleep(const rb_thread_t *, int, const struct timespec *));
void void
rb_sigwait_sleep(const rb_thread_t *th, int fd, const struct timespec *ts) rb_sigwait_sleep(const rb_thread_t *th, int fd, const struct timespec *ts)
{ {