[TD-2875]<fix>: comment out stderr print to make crash_gen no Killed

This commit is contained in:
Minglei Jin 2021-02-03 17:04:22 +08:00
parent ea981d0806
commit 8791ac235f
1 changed files with 2 additions and 2 deletions

View File

@ -84,11 +84,11 @@ static void monotonicInit_x86linux() {
regfree(&constTscRegex); regfree(&constTscRegex);
if (mono_ticksPerMicrosecond == 0) { if (mono_ticksPerMicrosecond == 0) {
fprintf(stderr, "monotonic: x86 linux, unable to determine clock rate"); //fprintf(stderr, "monotonic: x86 linux, unable to determine clock rate");
return; return;
} }
if (!constantTsc) { if (!constantTsc) {
fprintf(stderr, "monotonic: x86 linux, 'constant_tsc' flag not present"); //fprintf(stderr, "monotonic: x86 linux, 'constant_tsc' flag not present");
return; return;
} }