diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-10-12 13:53:10 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-10-12 13:53:10 -0400 |
commit | 17b1c8f90d49bca067f4557940d443c379aa4b8a (patch) | |
tree | cc27ba1fdc9251f51e08aae665abe274ac91d719 /dev | |
parent | b6d2555ec500494d531e94001c723cbc4c06225c (diff) | |
download | gem5-17b1c8f90d49bca067f4557940d443c379aa4b8a.tar.xz |
better english in stat descriptions for NS GigE
dev/ns_gige.cc:
better english in stat descriptions
--HG--
extra : convert_revision : e75fc71e3285389cd38a9a00376a494778536b1d
Diffstat (limited to 'dev')
-rw-r--r-- | dev/ns_gige.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/dev/ns_gige.cc b/dev/ns_gige.cc index 45e1cd68c..d67c6cf95 100644 --- a/dev/ns_gige.cc +++ b/dev/ns_gige.cc @@ -315,7 +315,7 @@ NSGigE::regStats() totalSwi .name(name() + ".totalSwi") - .desc("number of total Swi written to ISR") + .desc("total number of Swi written to ISR") .precision(0) ; @@ -333,7 +333,7 @@ NSGigE::regStats() totalRxIdle .name(name() + ".totalRxIdle") - .desc("number of total RxIdle written to ISR") + .desc("total number of RxIdle written to ISR") .precision(0) ; @@ -351,7 +351,7 @@ NSGigE::regStats() totalRxOk .name(name() + ".totalRxOk") - .desc("number of total RxOk written to ISR") + .desc("total number of RxOk written to ISR") .precision(0) ; @@ -369,7 +369,7 @@ NSGigE::regStats() totalRxDesc .name(name() + ".totalRxDesc") - .desc("number of total RxDesc written to ISR") + .desc("total number of RxDesc written to ISR") .precision(0) ; @@ -387,7 +387,7 @@ NSGigE::regStats() totalTxOk .name(name() + ".totalTxOk") - .desc("number of total TxOk written to ISR") + .desc("total number of TxOk written to ISR") .precision(0) ; @@ -405,7 +405,7 @@ NSGigE::regStats() totalTxIdle .name(name() + ".totalTxIdle") - .desc("number of total TxIdle written to ISR") + .desc("total number of TxIdle written to ISR") .precision(0) ; @@ -423,7 +423,7 @@ NSGigE::regStats() totalTxDesc .name(name() + ".totalTxDesc") - .desc("number of total TxDesc written to ISR") + .desc("total number of TxDesc written to ISR") .precision(0) ; @@ -441,7 +441,7 @@ NSGigE::regStats() totalRxOrn .name(name() + ".totalRxOrn") - .desc("number of total RxOrn written to ISR") + .desc("total number of RxOrn written to ISR") .precision(0) ; |