Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
447cfb71
Commit
447cfb71
authored
Nov 09, 2013
by
Rusty Russell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
list: fix list_prev and list_next on const lists.
Signed-off-by:
Rusty Russell
<
rusty@rustcorp.com.au
>
parent
efd79fad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
ccan/list/list.h
ccan/list/list.h
+2
-2
ccan/list/test/run-list_prev-list_next.c
ccan/list/test/run-list_prev-list_next.c
+16
-1
No files found.
ccan/list/list.h
View file @
447cfb71
...
...
@@ -604,8 +604,8 @@ static inline struct list_node *list_node_from_off_(void *ptr, size_t off)
#endif
/* Returns member, or NULL if at end of list. */
static
inline
void
*
list_entry_or_null
(
struct
list_head
*
h
,
struct
list_node
*
n
,
static
inline
void
*
list_entry_or_null
(
const
struct
list_head
*
h
,
const
struct
list_node
*
n
,
size_t
off
)
{
if
(
n
==
&
h
->
n
)
...
...
ccan/list/test/run-list_prev-list_next.c
View file @
447cfb71
...
...
@@ -18,8 +18,10 @@ int main(int argc, char *argv[])
{
struct
parent
parent
;
struct
child
c1
,
c2
,
c3
;
const
struct
parent
*
p
;
const
struct
child
*
c
;
plan_tests
(
12
);
plan_tests
(
20
);
parent
.
num_children
=
0
;
list_head_init
(
&
parent
.
children
);
...
...
@@ -46,5 +48,18 @@ int main(int argc, char *argv[])
ok1
(
list_prev
(
&
parent
.
children
,
&
c2
,
list
)
==
&
c1
);
ok1
(
list_next
(
&
parent
.
children
,
&
c3
,
list
)
==
NULL
);
ok1
(
list_prev
(
&
parent
.
children
,
&
c3
,
list
)
==
&
c2
);
/* Const variants */
p
=
&
parent
;
c
=
&
c2
;
ok1
(
list_next
(
&
p
->
children
,
&
c1
,
list
)
==
&
c2
);
ok1
(
list_prev
(
&
p
->
children
,
&
c1
,
list
)
==
NULL
);
ok1
(
list_next
(
&
p
->
children
,
c
,
list
)
==
&
c3
);
ok1
(
list_prev
(
&
p
->
children
,
c
,
list
)
==
&
c1
);
ok1
(
list_next
(
&
parent
.
children
,
c
,
list
)
==
&
c3
);
ok1
(
list_prev
(
&
parent
.
children
,
c
,
list
)
==
&
c1
);
ok1
(
list_next
(
&
p
->
children
,
&
c3
,
list
)
==
NULL
);
ok1
(
list_prev
(
&
p
->
children
,
&
c3
,
list
)
==
&
c2
);
return
exit_status
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment