aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 00:52:34 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 11:04:23 +1000
commit10a40a90e360807cee1c1a4452013091f22f68e9 (patch)
tree3236eb966265b13e708b34b8ec5efef12a8d72d4
parent7461a43ca9cc97f062b2e18fb07c58d0951250d7 (diff)
downloadbusybox-w32-10a40a90e360807cee1c1a4452013091f22f68e9.tar.gz
busybox-w32-10a40a90e360807cee1c1a4452013091f22f68e9.tar.bz2
busybox-w32-10a40a90e360807cee1c1a4452013091f22f68e9.zip
win32: ash: struct var
-rw-r--r--shell/ash.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 518615316..fa4410749 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -13317,6 +13317,24 @@ name(type *vp) \
13317 return start; \ 13317 return start; \
13318} 13318}
13319 13319
13320/*
13321 * struct var
13322 */
13323SLIST_SIZE_BEGIN(var_size,struct var)
13324funcstringsize += strlen(p->text) + 1;
13325nodeptrsize++; /* p->text */
13326SLIST_SIZE_END()
13327
13328SLIST_COPY_BEGIN(var_copy,struct var)
13329(*vpp)->text = nodeckstrdup(vp->text);
13330(*vpp)->flags = vp->flags;
13331/*
13332 * The only place that can set struct var#func is varinit[],
13333 * which will be fixed by forkshell_init()
13334 */
13335(*vpp)->func = NULL;
13336SAVE_PTR((*vpp)->text);
13337SLIST_COPY_END()
13320/*- 13338/*-
13321 * Copyright (c) 1989, 1991, 1993, 1994 13339 * Copyright (c) 1989, 1991, 1993, 1994
13322 * The Regents of the University of California. All rights reserved. 13340 * The Regents of the University of California. All rights reserved.