From 612facb32acb4907156c11a47b31e5edecf2957a Mon Sep 17 00:00:00 2001 From: Nguyễn Thái Ngọc Duy Date: Wed, 14 Apr 2010 00:54:43 +0200 Subject: win32: ash: struct tblentry **cmdtable --- shell/ash.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/shell/ash.c b/shell/ash.c index 1fb2745b3..b4ecf9d3a 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -13419,6 +13419,30 @@ tblentry_copy(struct tblentry *tep) *newp = NULL; return start; } + +static void +cmdtable_size(struct tblentry **cmdtablep) +{ + int i; + nodeptrsize += CMDTABLESIZE; + funcblocksize += sizeof(struct tblentry *)*CMDTABLESIZE; + for (i = 0; i < CMDTABLESIZE; i++) + tblentry_size(cmdtablep[i]); +} + +static struct tblentry ** +cmdtable_copy(struct tblentry **cmdtablep) +{ + struct tblentry **new = funcblock; + int i; + + funcblock = (char *) funcblock + sizeof(struct tblentry *)*CMDTABLESIZE; + for (i = 0; i < CMDTABLESIZE; i++) { + new[i] = tblentry_copy(cmdtablep[i]); + SAVE_PTR(new[i]); + } + return new; +} /*- * Copyright (c) 1989, 1991, 1993, 1994 * The Regents of the University of California. All rights reserved. -- cgit v1.2.3-55-g6feb