diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 00:54:43 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 11:04:26 +1000 |
commit | 612facb32acb4907156c11a47b31e5edecf2957a (patch) | |
tree | 7cd1d4238ab95fda054c632e98ce216d87b31b97 | |
parent | eab88849259848439c173f563c7a37079a8c36c8 (diff) | |
download | busybox-w32-612facb32acb4907156c11a47b31e5edecf2957a.tar.gz busybox-w32-612facb32acb4907156c11a47b31e5edecf2957a.tar.bz2 busybox-w32-612facb32acb4907156c11a47b31e5edecf2957a.zip |
win32: ash: struct tblentry **cmdtable
-rw-r--r-- | shell/ash.c | 24 |
1 files changed, 24 insertions, 0 deletions
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) | |||
13419 | *newp = NULL; | 13419 | *newp = NULL; |
13420 | return start; | 13420 | return start; |
13421 | } | 13421 | } |
13422 | |||
13423 | static void | ||
13424 | cmdtable_size(struct tblentry **cmdtablep) | ||
13425 | { | ||
13426 | int i; | ||
13427 | nodeptrsize += CMDTABLESIZE; | ||
13428 | funcblocksize += sizeof(struct tblentry *)*CMDTABLESIZE; | ||
13429 | for (i = 0; i < CMDTABLESIZE; i++) | ||
13430 | tblentry_size(cmdtablep[i]); | ||
13431 | } | ||
13432 | |||
13433 | static struct tblentry ** | ||
13434 | cmdtable_copy(struct tblentry **cmdtablep) | ||
13435 | { | ||
13436 | struct tblentry **new = funcblock; | ||
13437 | int i; | ||
13438 | |||
13439 | funcblock = (char *) funcblock + sizeof(struct tblentry *)*CMDTABLESIZE; | ||
13440 | for (i = 0; i < CMDTABLESIZE; i++) { | ||
13441 | new[i] = tblentry_copy(cmdtablep[i]); | ||
13442 | SAVE_PTR(new[i]); | ||
13443 | } | ||
13444 | return new; | ||
13445 | } | ||
13422 | /*- | 13446 | /*- |
13423 | * Copyright (c) 1989, 1991, 1993, 1994 | 13447 | * Copyright (c) 1989, 1991, 1993, 1994 |
13424 | * The Regents of the University of California. All rights reserved. | 13448 | * The Regents of the University of California. All rights reserved. |