Event descriptions should not end in "event"

(they function as adjectives not nouns)

--HG--
extra : convert_revision : 6506474ff3356ae8c80ed276c3608d8a4680bfdb
This commit is contained in:
Steve Reinhardt
2007-06-30 17:45:58 -07:00
parent f0c4dd7920
commit ee54ad318a
21 changed files with 26 additions and 26 deletions

View File

@@ -89,7 +89,7 @@ class EtherTap : public EtherInt
TxEvent(EtherTap *_tap)
: Event(&mainEventQueue), tap(_tap) {}
void process() { tap->retransmit(); }
virtual const char *description() { return "retransmit event"; }
virtual const char *description() { return "EtherTap retransmit"; }
};
friend class TxEvent;

View File

@@ -58,7 +58,7 @@ Uart8250::IntrEvent::IntrEvent(Uart8250 *u, int bit)
const char *
Uart8250::IntrEvent::description()
{
return "uart interrupt delay event";
return "uart interrupt delay";
}
void