diff options
| author | Richard Kistruck | 2007-06-29 14:08:00 +0100 |
|---|---|---|
| committer | Richard Kistruck | 2007-06-29 14:08:00 +0100 |
| commit | 4df14dcbf8fbfcbe8aa2065e3632d38f44684fa4 (patch) | |
| tree | 3f9fd329b03cb1af13f42d53ddc37deea365340a /mps/code/mpmtypes.h | |
| parent | 8b86a6e7f9c3499e8d3ad546ed395133bd59e63a (diff) | |
| download | emacs-4df14dcbf8fbfcbe8aa2065e3632d38f44684fa4.tar.gz emacs-4df14dcbf8fbfcbe8aa2065e3632d38f44684fa4.zip | |
Mps br/diag: rename #def "diagnostics" as "statistics", as all the
macros it controls are called "STATISTIC_blah", and same replacement
in comments. The term "diagnostic" means something else now: see
design/diag/.
Copied from Perforce
Change: 162692
ServerID: perforce.ravenbrook.com
Diffstat (limited to 'mps/code/mpmtypes.h')
| -rw-r--r-- | mps/code/mpmtypes.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mps/code/mpmtypes.h b/mps/code/mpmtypes.h index f7da1f58d7c..868bfa283ae 100644 --- a/mps/code/mpmtypes.h +++ b/mps/code/mpmtypes.h | |||
| @@ -454,12 +454,12 @@ typedef double WriteFD; | |||
| 454 | * leave them in, see design.mps.metrics. | 454 | * leave them in, see design.mps.metrics. |
| 455 | */ | 455 | */ |
| 456 | 456 | ||
| 457 | #if defined(DIAGNOSTICS) | 457 | #if defined(STATISTICS) |
| 458 | #define STATISTIC_DECL(field) field | 458 | #define STATISTIC_DECL(field) field |
| 459 | #elif defined(DIAGNOSTICS_NONE) | 459 | #elif defined(STATISTICS_NONE) |
| 460 | #define STATISTIC_DECL(field) field | 460 | #define STATISTIC_DECL(field) field |
| 461 | #else | 461 | #else |
| 462 | #error "No diagnostics configured." | 462 | #error "No statistics configured." |
| 463 | #endif | 463 | #endif |
| 464 | 464 | ||
| 465 | 465 | ||