X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fantithread%2Fantithread.c;h=72e172b1a244d82bd6e503510943eaf155091691;hb=3022d16de40870c66c891a4aa75280e194ddf89f;hp=61b288a36bc11c61a6853d076b4f1b5d06c3f95f;hpb=387d15092e7f24d7f6014cea43e0c4f7922464de;p=ccan diff --git a/ccan/antithread/antithread.c b/ccan/antithread/antithread.c index 61b288a3..72e172b1 100644 --- a/ccan/antithread/antithread.c +++ b/ccan/antithread/antithread.c @@ -1,3 +1,4 @@ +/* Licensed under GPLv3+ - see LICENSE file for details */ #include #include #include @@ -6,14 +7,15 @@ #include #include #include +#include #include #include -#include #include "antithread.h" +#include #include #include #include -#include +#include #include /* FIXME: Valgrind support should be possible for some cases. Tricky @@ -193,7 +195,7 @@ struct at_pool *at_pool(unsigned long size) /* Then we remap into the middle of it. */ munmap(p->pool, size+PADDING); - p->pool = mmap(p->pool + PADDING/2, size, PROT_READ|PROT_WRITE, + p->pool = mmap((char *)p->pool + PADDING/2, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0); if (p->pool == MAP_FAILED) goto fail_free; @@ -420,7 +422,7 @@ struct at_pool *at_get_pool(int *argc, char *argv[], void **arg) p = atp->p = talloc(atp, struct at_pool_contents); - if (sscanf(argv[1], "AT:%p/%lu/%i/%i/%i/%p", + if (sscanf(argv[1], "AT:%p/%lu/%i/%i/%i/%p", &p->pool, &p->poolsize, &p->fd, &p->parent_rfd, &p->parent_wfd, arg) != 6) { errno = EINVAL;