[Date Prev][Date Next][Thread Prev][Thread Next][Author Index][Date Index][Thread Index]
How to Restart an Object
- To: <mark@xxxxxxxxxxx>
- Subject: How to Restart an Object
- From: Mark S. Miller <vlad!mark>
- Date: Sun, 24 Jun 90 01:28:37 PDT
- Cc: <xtech@xxxxxxxxxxx>
- In-reply-to: <MarkS.Miller'smessageofSun>,36 PDT <9006240732.AA09633@xanadu>
Date: Sun, 24 Jun 90 00:32:36 PDT
From: xanadu!mark (Mark S. Miller)
...
void Foo::sendFoo (Transceiver * trans)
{
// ... some ideosyncratic way of receiving j from trans
}
void Foo::receiveFoo (Transceiver * trans)
{
// ... some ideosyncratic way of sending j to trans
}
That should be:
void Foo::sendFoo (Transceiver * trans)
{
// ... some ideosyncratic way of sending j to trans
}
void Foo::receiveFoo (Transceiver * trans)
{
// ... some ideosyncratic way of receiving j from trans
}