diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2012-03-15 23:30:36 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2012-03-15 23:30:36 -0400 |
commit | 4edf34ed01611d75bdcd98aa065a2b286845ebd9 (patch) | |
tree | 6a9734beaf245c116e8553d28a2039d7fa59b9eb /indra/llcommon/llprocess.cpp | |
parent | be669d4a1fe0e52ba8524ad851376cf653c822b6 (diff) |
Promote LLProcess::ReadPipe::size() to BasePipe (hence WritePipe).
Certain use cases need to know whether the WritePipe buffer has been flushed
to the pipe, or is still pending.
Diffstat (limited to 'indra/llcommon/llprocess.cpp')
-rw-r--r-- | indra/llcommon/llprocess.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp index bd08c3ab51..d4786035ce 100644 --- a/indra/llcommon/llprocess.cpp +++ b/indra/llcommon/llprocess.cpp @@ -163,6 +163,7 @@ public: } virtual std::ostream& get_ostream() { return mStream; } + virtual size_type size() const { return mStreambuf.size(); } bool tick(const LLSD&) { |