diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 01:02:05 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 11:04:32 +1000 |
commit | 7191acfd88b9eb63789aae665d05434cde39e4a1 (patch) | |
tree | d5a3928865b7a5a92863e81909071acb89ac3455 | |
parent | db169a1431dd5cf6c9e7cf9c699c7629946b3944 (diff) | |
download | busybox-w32-7191acfd88b9eb63789aae665d05434cde39e4a1.tar.gz busybox-w32-7191acfd88b9eb63789aae665d05434cde39e4a1.tar.bz2 busybox-w32-7191acfd88b9eb63789aae665d05434cde39e4a1.zip |
win32: ash: sticky_free()
-rw-r--r-- | shell/ash.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 2e47fd272..ba5811213 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -112,6 +112,8 @@ struct forkshell { | |||
112 | struct strlist *strlist; | 112 | struct strlist *strlist; |
113 | pid_t pid; | 113 | pid_t pid; |
114 | }; | 114 | }; |
115 | static void sticky_free(void *p); | ||
116 | #define free(p) sticky_free(p) | ||
115 | static int spawn_forkshell(struct job *jp, struct forkshell *fs, int mode); | 117 | static int spawn_forkshell(struct job *jp, struct forkshell *fs, int mode); |
116 | #endif | 118 | #endif |
117 | 119 | ||
@@ -13784,6 +13786,7 @@ forkshell_prepare(struct forkshell *fs) | |||
13784 | #undef exception_handler | 13786 | #undef exception_handler |
13785 | #undef trap | 13787 | #undef trap |
13786 | #undef trap_ptr | 13788 | #undef trap_ptr |
13789 | static void *sticky_mem_start, *sticky_mem_end; | ||
13787 | static void | 13790 | static void |
13788 | forkshell_init(const char *idstr) | 13791 | forkshell_init(const char *idstr) |
13789 | { | 13792 | { |
@@ -13802,6 +13805,9 @@ forkshell_init(const char *idstr) | |||
13802 | if (!fs) | 13805 | if (!fs) |
13803 | bb_error_msg_and_die("Invalid forkshell memory"); | 13806 | bb_error_msg_and_die("Invalid forkshell memory"); |
13804 | 13807 | ||
13808 | /* this memory can't be freed */ | ||
13809 | sticky_mem_start = fs; | ||
13810 | sticky_mem_end = (char *) fs + fs->size; | ||
13805 | /* pointer fixup */ | 13811 | /* pointer fixup */ |
13806 | nodeptr = (int*)((char*)fs + fs->nodeptr_offset); | 13812 | nodeptr = (int*)((char*)fs + fs->nodeptr_offset); |
13807 | while (*nodeptr) { | 13813 | while (*nodeptr) { |
@@ -13838,6 +13844,15 @@ forkshell_init(const char *idstr) | |||
13838 | fs->fp(fs); | 13844 | fs->fp(fs); |
13839 | } | 13845 | } |
13840 | 13846 | ||
13847 | #undef free | ||
13848 | static void | ||
13849 | sticky_free(void *base) | ||
13850 | { | ||
13851 | if (base >= sticky_mem_start && base < sticky_mem_end) | ||
13852 | return; | ||
13853 | free(base); | ||
13854 | } | ||
13855 | |||
13841 | /*- | 13856 | /*- |
13842 | * Copyright (c) 1989, 1991, 1993, 1994 | 13857 | * Copyright (c) 1989, 1991, 1993, 1994 |
13843 | * The Regents of the University of California. All rights reserved. | 13858 | * The Regents of the University of California. All rights reserved. |