зеркало из https://github.com/github/ruby.git
* thread.c (rb_thread_priority_set): get rid of C99 feature.
* transcode.c (transcode_search_path): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18606 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
0c18a4b0f0
Коммит
914969a040
|
@ -1,4 +1,8 @@
|
|||
Thu Aug 14 14:54:55 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Thu Aug 14 14:56:42 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* thread.c (rb_thread_priority_set): get rid of C99 feature.
|
||||
|
||||
* transcode.c (transcode_search_path): ditto.
|
||||
|
||||
* vm.c (REWIND_CFP): get rid of statement expressions.
|
||||
|
||||
|
|
2
thread.c
2
thread.c
|
@ -1879,8 +1879,8 @@ static VALUE
|
|||
rb_thread_priority_set(VALUE thread, VALUE prio)
|
||||
{
|
||||
rb_thread_t *th;
|
||||
GetThreadPtr(thread, th);
|
||||
int priority;
|
||||
GetThreadPtr(thread, th);
|
||||
|
||||
rb_secure(4);
|
||||
|
||||
|
|
|
@ -205,7 +205,7 @@ transcode_search_path(const char *from, const char *to,
|
|||
}
|
||||
found = 0;
|
||||
|
||||
cleanup:
|
||||
cleanup:
|
||||
while (bfs.queue) {
|
||||
q = bfs.queue;
|
||||
bfs.queue = q->next;
|
||||
|
@ -214,8 +214,8 @@ cleanup:
|
|||
|
||||
if (found) {
|
||||
const char *enc = to;
|
||||
pathlen = 0;
|
||||
int depth;
|
||||
pathlen = 0;
|
||||
while (1) {
|
||||
st_lookup(bfs.visited, (st_data_t)enc, &val);
|
||||
if (!val)
|
||||
|
|
Загрузка…
Ссылка в новой задаче