svn commit: r334187 - vendor-sys/ck/dist/include
Julian Elischer
julian at freebsd.org
Sat May 26 07:39:12 UTC 2018
Would it not make more sense to simply use the real one instead?
ck's queue.h is just a copy of a very old BSD queue.h.
(or maybe from netbsd or something)
As far as I can see it would probably have just worked.
On 25/5/18 5:35 am, Olivier Houchard wrote:
> Author: cognet
> Date: Thu May 24 21:35:52 2018
> New Revision: 334187
> URL: https://svnweb.freebsd.org/changeset/base/334187
>
> Log:
> Import CK as of commit 0f017230ccc86929f56bf44ef2dca93d7df8076b.
> This brings us the renaming of fields in ck_queue, so that our own
> LIST/SLIST/TAILQ/etc won't accidentally work with them.
>
> Modified:
> vendor-sys/ck/dist/include/ck_queue.h
>
> Modified: vendor-sys/ck/dist/include/ck_queue.h
> ==============================================================================
> --- vendor-sys/ck/dist/include/ck_queue.h Thu May 24 21:22:03 2018 (r334186)
> +++ vendor-sys/ck/dist/include/ck_queue.h Thu May 24 21:35:52 2018 (r334187)
> @@ -125,7 +125,7 @@
> */
> #define CK_SLIST_HEAD(name, type) \
> struct name { \
> - struct type *slh_first; /* first element */ \
> + struct type *cslh_first; /* first element */ \
More information about the svn-src-vendor
mailing list