From 7461a43ca9cc97f062b2e18fb07c58d0951250d7 Mon Sep 17 00:00:00 2001 From: Nguyễn Thái Ngọc Duy Date: Wed, 14 Apr 2010 00:52:06 +0200 Subject: win32: ash: macros for implementing simple foo_size, foo_copy --- shell/ash.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/shell/ash.c b/shell/ash.c index c99a1351f..518615316 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -13281,6 +13281,41 @@ int ash_main(int argc UNUSED_PARAM, char **argv) /* NOTREACHED */ } +/* + * forkshell_prepare() and friends + */ +#define SLIST_SIZE_BEGIN(name,type) \ +static void \ +name(type *p) \ +{ \ + while (p) { \ + funcblocksize += sizeof(type); + /* do something here with p */ +#define SLIST_SIZE_END() \ + nodeptrsize++; \ + p = p->next; \ + } \ +} + +#define SLIST_COPY_BEGIN(name,type) \ +static type * \ +name(type *vp) \ +{ \ + type *start; \ + type **vpp; \ + vpp = &start; \ + while (vp) { \ + *vpp = funcblock; \ + funcblock = (char *) funcblock + sizeof(type); + /* do something here with vpp and vp */ +#define SLIST_COPY_END() \ + SAVE_PTR((*vpp)->next); \ + vp = vp->next; \ + vpp = &(*vpp)->next; \ + } \ + *vpp = NULL; \ + return start; \ +} /*- * Copyright (c) 1989, 1991, 1993, 1994 -- cgit v1.2.3-55-g6feb