* gc.c (getrusage_time): should return the value.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18607 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2008-08-14 05:57:58 +00:00
Родитель 914969a040
Коммит 2c20dd1473
2 изменённых файлов: 4 добавлений и 1 удалений

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

@ -1,4 +1,6 @@
Thu Aug 14 14:56:42 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
Thu Aug 14 14:57:46 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* gc.c (getrusage_time): should return the value.
* thread.c (rb_thread_priority_set): get rid of C99 feature.

1
gc.c
Просмотреть файл

@ -140,6 +140,7 @@ getrusage_time(void)
t += (double)(DWORD)(q >> 16) * (1 << 16);
t += (DWORD)q & ~(~0 << 16);
#endif
return t;
#else
return 0.0;
#endif