mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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:
parent
6f7b3de187
commit
6a9b63e390
1 changed files with 2 additions and 1 deletions
|
@ -779,13 +779,14 @@ rb_sigwait_fd_get(rb_thread_t *th)
|
|||
return -1; /* TODO */
|
||||
}
|
||||
|
||||
NORETURN(void rb_sigwait_fd_put(rb_thread_t *, int));
|
||||
void
|
||||
rb_sigwait_fd_put(rb_thread_t *th, int fd)
|
||||
{
|
||||
rb_bug("not implemented, should not be called");
|
||||
}
|
||||
|
||||
|
||||
NORETURN(void rb_sigwait_sleep(const rb_thread_t *, int, const struct timespec *));
|
||||
void
|
||||
rb_sigwait_sleep(const rb_thread_t *th, int fd, const struct timespec *ts)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue