aboutsummaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-02-02 16:04:20 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-02-02 16:14:53 +0000
commitd3a171fc3f64eb3fee389d0eff7856ac911b798c (patch)
tree0434968c427cad386bd5e87d094653f81963b55a /fastos
parentd1daad830a576f9147b709523670635420fd49d3 (diff)
Add noexcept and some other minor code health.
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;