Changeset 3479 for trunk/src/kmk/main.c
- Timestamp:
- Sep 21, 2020, 12:59:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/main.c
r3432 r3479 4388 4388 { 4389 4389 need_2nd_error = 1; 4390 need_2nd_error_output = job_slots_used > 24391 && out == NULL4390 need_2nd_error_output = job_slots_used >= 2 4391 && out != NULL 4392 4392 && out != &make_sync; 4393 if (need_2nd_error_output) 4394 output_metered = 0; 4393 4395 } 4394 4396 #endif /* KMK */ … … 4470 4472 { 4471 4473 out->dont_truncate = 0; 4472 if (need_2nd_error_output) 4474 fprintf(stderr, "output_metered=%d\n", output_metered); 4475 if (need_2nd_error_output && output_metered > 20) 4473 4476 output_dump (out); 4477 else 4478 output_reset (out); 4474 4479 output_close (out); 4475 4480 } … … 4480 4485 4481 4486 #ifdef KMK 4482 void die (int status)4487 void die (int status) 4483 4488 { 4484 4489 die_with_job_output (status, NULL);
Note:
See TracChangeset
for help on using the changeset viewer.