X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Fproto%2Fprotoio.hh;h=27bb336c4143c07647f595af6d7f46bc75f52e18;hb=7ff32d7b53b1a699f4383d3c9c5279b6ab894d55;hp=d5c6a4bacca447116d08513b1d706c18961a9216;hpb=4afa6c4c3e7bb4ce0aea876120bf997e42353f67;p=gem5.git diff --git a/src/proto/protoio.hh b/src/proto/protoio.hh index d5c6a4bac..27bb336c4 100644 --- a/src/proto/protoio.hh +++ b/src/proto/protoio.hh @@ -122,13 +122,13 @@ class ProtoOutputStream : public ProtoStream std::ofstream fileStream; /// Zero Copy stream wrapping the STL output stream - google::protobuf::io::OstreamOutputStream* zeroCopyStream; + google::protobuf::io::OstreamOutputStream* wrappedFileStream; /// Optional Gzip stream to wrap the Zero Copy stream google::protobuf::io::GzipOutputStream* gzipStream; - /// Top-level coded stream that messages are written to - google::protobuf::io::CodedOutputStream* codedStream; + /// Top-level zero-copy stream, either with compression or not + google::protobuf::io::ZeroCopyOutputStream* zeroCopyStream; }; @@ -193,13 +193,13 @@ class ProtoInputStream : public ProtoStream bool useGzip; /// Zero Copy stream wrapping the STL input stream - google::protobuf::io::IstreamInputStream* zeroCopyStream; + google::protobuf::io::IstreamInputStream* wrappedFileStream; /// Optional Gzip stream to wrap the Zero Copy stream google::protobuf::io::GzipInputStream* gzipStream; - /// Top-level coded stream that messages are read from - google::protobuf::io::CodedInputStream* codedStream; + /// Top-level zero-copy stream, either with compression or not + google::protobuf::io::ZeroCopyInputStream* zeroCopyStream; };