Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
a346276d
Commit
a346276d
authored
10 years ago
by
René Kijewski
Browse files
Options
Downloads
Patches
Plain Diff
ringbuffer: don't overwrite in `ringbuffer_add`
parent
47950e8b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sys/include/ringbuffer.h
+2
-2
2 additions, 2 deletions
sys/include/ringbuffer.h
sys/lib/ringbuffer.c
+12
-5
12 additions, 5 deletions
sys/lib/ringbuffer.c
with
14 additions
and
7 deletions
sys/include/ringbuffer.h
+
2
−
2
View file @
a346276d
...
@@ -27,8 +27,8 @@ typedef struct ringbuffer {
...
@@ -27,8 +27,8 @@ typedef struct ringbuffer {
}
ringbuffer_t
;
}
ringbuffer_t
;
void
ringbuffer_init
(
ringbuffer_t
*
restrict
rb
,
char
*
buffer
,
unsigned
bufsize
);
void
ringbuffer_init
(
ringbuffer_t
*
restrict
rb
,
char
*
buffer
,
unsigned
bufsize
);
void
ringbuffer_add_one
(
ringbuffer_t
*
restrict
rb
,
char
c
);
int
ringbuffer_add_one
(
ringbuffer_t
*
restrict
rb
,
char
c
);
voi
d
ringbuffer_add
(
ringbuffer_t
*
restrict
rb
,
const
char
*
buf
,
unsigned
n
);
unsigne
d
ringbuffer_add
(
ringbuffer_t
*
restrict
rb
,
const
char
*
buf
,
unsigned
n
);
int
ringbuffer_get_one
(
ringbuffer_t
*
restrict
rb
);
int
ringbuffer_get_one
(
ringbuffer_t
*
restrict
rb
);
unsigned
ringbuffer_get
(
ringbuffer_t
*
restrict
rb
,
char
*
buf
,
unsigned
n
);
unsigned
ringbuffer_get
(
ringbuffer_t
*
restrict
rb
,
char
*
buf
,
unsigned
n
);
...
...
This diff is collapsed.
Click to expand it.
sys/lib/ringbuffer.c
+
12
−
5
View file @
a346276d
...
@@ -44,19 +44,26 @@ static char get_head(ringbuffer_t *restrict rb)
...
@@ -44,19 +44,26 @@ static char get_head(ringbuffer_t *restrict rb)
return
result
;
return
result
;
}
}
voi
d
ringbuffer_add
(
ringbuffer_t
*
restrict
rb
,
const
char
*
buf
,
unsigned
n
)
unsigne
d
ringbuffer_add
(
ringbuffer_t
*
restrict
rb
,
const
char
*
buf
,
unsigned
n
)
{
{
for
(
unsigned
i
=
0
;
i
<
n
;
i
++
)
{
unsigned
i
;
ringbuffer_add_one
(
rb
,
buf
[
i
]);
for
(
i
=
0
;
i
<
n
;
i
++
)
{
if
(
ringbuffer_full
(
rb
))
{
break
;
}
add_tail
(
rb
,
buf
[
i
]);
}
}
return
i
;
}
}
void
ringbuffer_add_one
(
ringbuffer_t
*
restrict
rb
,
char
c
)
int
ringbuffer_add_one
(
ringbuffer_t
*
restrict
rb
,
char
c
)
{
{
int
result
=
-
1
;
if
(
ringbuffer_full
(
rb
))
{
if
(
ringbuffer_full
(
rb
))
{
get_head
(
rb
);
result
=
(
unsigned
char
)
get_head
(
rb
);
}
}
add_tail
(
rb
,
c
);
add_tail
(
rb
,
c
);
return
result
;
}
}
int
ringbuffer_get_one
(
ringbuffer_t
*
restrict
rb
)
int
ringbuffer_get_one
(
ringbuffer_t
*
restrict
rb
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment