Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
netdata
netdata
/
src
/
libnetdata
/
circular_buffer
/
README.md
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
md
5 lines
241 Bytes
Rendered
Copy permalink
Copy
Raw
1
# Circular Buffer
2
3
`struct circular_buffer`
is an adaptive circular buffer. It will start at an initial size
4
and grow up to a maximum size as it fills. Two indices within the structure track the current
5
`read`
and
`write`
position for data.