Use macro SET_WHEN_UINT
This commit is contained in:
parent
e9152bc9da
commit
19752cf4aa
19
debug.c
19
debug.c
@ -219,7 +219,11 @@ ruby_env_debug_option(const char *str, int len, void *arg)
|
|||||||
} \
|
} \
|
||||||
} while (0)
|
} while (0)
|
||||||
#define SET_WHEN_UINT(name, vals, num, req) \
|
#define SET_WHEN_UINT(name, vals, num, req) \
|
||||||
if (NAME_MATCH_VALUE(name)) SET_UINT_LIST(name, vals, num);
|
if (NAME_MATCH_VALUE(name)) { \
|
||||||
|
if (!len) req; \
|
||||||
|
else SET_UINT_LIST(name, vals, num); \
|
||||||
|
return 1; \
|
||||||
|
}
|
||||||
|
|
||||||
if (NAME_MATCH("gc_stress")) {
|
if (NAME_MATCH("gc_stress")) {
|
||||||
rb_gc_stress_set(Qtrue);
|
rb_gc_stress_set(Qtrue);
|
||||||
@ -227,22 +231,15 @@ ruby_env_debug_option(const char *str, int len, void *arg)
|
|||||||
}
|
}
|
||||||
SET_WHEN("core", ruby_enable_coredump, 1);
|
SET_WHEN("core", ruby_enable_coredump, 1);
|
||||||
SET_WHEN("ci", ruby_on_ci, 1);
|
SET_WHEN("ci", ruby_on_ci, 1);
|
||||||
if (NAME_MATCH_VALUE("rgengc")) {
|
SET_WHEN_UINT("rgengc", &ruby_rgengc_debug, 1, ruby_rgengc_debug = 1);
|
||||||
if (!len) ruby_rgengc_debug = 1;
|
|
||||||
else SET_UINT_LIST("rgengc", &ruby_rgengc_debug, 1);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
#if defined _WIN32
|
#if defined _WIN32
|
||||||
# if RUBY_MSVCRT_VERSION >= 80
|
# if RUBY_MSVCRT_VERSION >= 80
|
||||||
SET_WHEN("rtc_error", ruby_w32_rtc_error, 1);
|
SET_WHEN("rtc_error", ruby_w32_rtc_error, 1);
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
#if defined _WIN32 || defined __CYGWIN__
|
#if defined _WIN32 || defined __CYGWIN__
|
||||||
if (NAME_MATCH_VALUE("codepage")) {
|
SET_WHEN_UINT("codepage", ruby_w32_codepage, numberof(ruby_w32_codepage),
|
||||||
if (!len) fprintf(stderr, "missing codepage argument");
|
fprintf(stderr, "missing codepage argument"));
|
||||||
else SET_UINT_LIST("codepage", ruby_w32_codepage, numberof(ruby_w32_codepage));
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user