зеркало из https://github.com/github/ruby.git
* 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:
Родитель
914969a040
Коммит
2c20dd1473
|
@ -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
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
|
||||
|
|
Загрузка…
Ссылка в новой задаче