summaryrefslogtreecommitdiff
path: root/ace/Stream.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-10-31 09:07:58 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-10-31 09:07:58 +0000
commit87720d1fb9c6ff5b56ed79a43fe13c077199a822 (patch)
tree55361d379e07ed44f46ef7ad0772b5d3d5209166 /ace/Stream.cpp
parent267685af03949eb809efb6f6b240c92e1aa086b1 (diff)
downloadATCD-87720d1fb9c6ff5b56ed79a43fe13c077199a822.tar.gz
Jammer
Diffstat (limited to 'ace/Stream.cpp')
-rw-r--r--ace/Stream.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/ace/Stream.cpp b/ace/Stream.cpp
index 3b985d1cc95..7b120ef43f3 100644
--- a/ace/Stream.cpp
+++ b/ace/Stream.cpp
@@ -32,26 +32,26 @@ ACE_Stream<ACE_SYNCH_2>::dump (void) const
ACE_DEBUG ((LM_DEBUG, "-------- writer links --------\n"));
- ACE_Task<ACE_SYNCH_2> *qp;
+ ACE_Task<ACE_SYNCH_2> *tp;
- for (qp = this->stream_head_->writer (); ; qp = qp->next ())
+ for (tp = this->stream_head_->writer (); ; tp = tp->next ())
{
- ACE_DEBUG ((LM_DEBUG, "writer queue name = %s\n", qp->name ()));
- qp->dump ();
+ ACE_DEBUG ((LM_DEBUG, "writer queue name = %s\n", tp->name ()));
+ tp->dump ();
ACE_DEBUG ((LM_DEBUG, "-------\n"));
- if (qp == this->stream_tail_->writer ()
- || (this->linked_us_ && qp == this->linked_us_->stream_head_->reader ()))
+ if (tp == this->stream_tail_->writer ()
+ || (this->linked_us_ && tp == this->linked_us_->stream_head_->reader ()))
break;
}
ACE_DEBUG ((LM_DEBUG, "-------- reader links --------\n"));
- for (qp = this->stream_tail_->reader (); ; qp = qp->next ())
+ for (tp = this->stream_tail_->reader (); ; tp = tp->next ())
{
- ACE_DEBUG ((LM_DEBUG, "reader queue name = %s\n", qp->name ()));
- qp->dump ();
+ ACE_DEBUG ((LM_DEBUG, "reader queue name = %s\n", tp->name ()));
+ tp->dump ();
ACE_DEBUG ((LM_DEBUG, "-------\n"));
- if (qp == this->stream_head_->reader ()
- || (this->linked_us_ && qp == this->linked_us_->stream_head_->writer ()))
+ if (tp == this->stream_head_->reader ()
+ || (this->linked_us_ && tp == this->linked_us_->stream_head_->writer ()))
break;
}
}