aboutsummaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-02-01 14:23:40 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-02-01 14:23:40 +0000
commit1ee55333e81ce57989f010c1f1e42e8afa8709d9 (patch)
tree1d492152de0a378eeca05dabe5bd0e32c9dee2d5 /fastos
parent06cb101c01b422011d8875cd174490a2cfb35cea (diff)
Implement BucketExecutor::sync.
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/ringbuffer.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/fastos/src/vespa/fastos/ringbuffer.h b/fastos/src/vespa/fastos/ringbuffer.h
index 41c0af7385b..89b1bb84c9c 100644
--- a/fastos/src/vespa/fastos/ringbuffer.h
+++ b/fastos/src/vespa/fastos/ringbuffer.h
@@ -42,18 +42,6 @@ public:
_closed = false;
}
- FastOS_RingBufferData *GetData () { return _data; }
-
- void RepositionDataAt0 ()
- {
- uint8_t *src = &_data->_buffer[_dataIndex];
- uint8_t *dst = _data->_buffer;
-
- for(int i=0; i<_dataSize; i++)
- *dst++ = *src++;
- _dataIndex = 0;
- }
-
FastOS_RingBuffer (int bufferSize)
: _closed(false),
_data(0),
@@ -93,11 +81,6 @@ public:
_dataSize += bytes;
}
- int GetDataSize ()
- {
- return _dataSize;
- }
-
int GetWriteSpace ()
{
int spaceLeft = _bufferSize - _dataSize;