[Date Prev][Date Next][Thread Prev][Thread Next][Author Index][Date Index][Thread Index]

How to Restart an Object



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
	   }