Details
Details
- Reviewers
wblock - Group Reviewers
manpages - Commits
- rS303801: Correct the documentation of the 'type' parameter for the _SWAP
NA
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
Looks okay to me (correcting a cut-and-paste error). Next time, a little bit of explanation in the Details section of the review would help to explain not just what is being done, but why.
Comment Actions
Hi bjk,
Only the Prototypes for SLIST and STAILQ were wrong.
LIST and TAILQ do require "LIST_ENTRY NAME" and "TAILQ_ENTRY NAME", respectively.
Refer: https://github.com/freebsd/freebsd/blob/master/sys/sys/queue.h#L523
and
https://github.com/freebsd/freebsd/blob/master/sys/sys/queue.h#L736
Comment Actions
Thanks for pointing it out; I must have been looking at the SLIST one in queue.h by accident while I was checking. Should be fixed in r303805