Skip to content

Commit

Permalink
Include fields from original class
Browse files Browse the repository at this point in the history
  • Loading branch information
labuser authored and wesm committed Oct 2, 2017
1 parent 5621c05 commit ba3db15
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cpp/src/arrow/io/memory.cc
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,16 @@ class FixedSizeBufferWriter::Impl {
void set_memcopy_threads(int num_threads);
void set_memcopy_blocksize(int64_t blocksize);
void set_memcopy_threshold(int64_t threshold);
private:
std::mutex lock_;
std::shared_ptr<Buffer> buffer_;
uint8_t* mutable_data_;
int64_t size_;
int64_t position_;

int memcopy_num_threads_;
int64_t memcopy_blocksize_;
int64_t memcopy_threshold_;

};

Expand Down

0 comments on commit ba3db15

Please sign in to comment.