Re: [U-Boot] [PATCH 3/5] Add hash table support as base for new environment code

2010-12-08 Thread Mike Frysinger
On Saturday, July 17, 2010 15:45:46 Wolfgang Denk wrote: This implementation is based on code from uClibc-0.9.30.3 but was modified and extended for use within U-Boot. unless i'm missing something, the non-reentrant versions operate on a single shared hash table. so while this works today

Re: [U-Boot] [PATCH 3/5] Add hash table support as base for new environment code

2010-12-08 Thread Wolfgang Denk
Dear Mike Frysinger, In message 201012080444.30675.vap...@gentoo.org you wrote: unless i'm missing something, the non-reentrant versions operate on a single shared hash table. so while this works today because there is only one Correct. consumer (the env code), wont this cause problems

Re: [U-Boot] [PATCH 3/5] Add hash table support as base for new environment code

2010-12-08 Thread Mike Frysinger
On Wednesday, December 08, 2010 05:02:38 Wolfgang Denk wrote: Mike Frysinger wrote: unless i'm missing something, the non-reentrant versions operate on a single shared hash table. so while this works today because there is only one Correct. consumer (the env code), wont this cause

Re: [U-Boot] [PATCH 3/5] Add hash table support as base for new environment code

2010-09-12 Thread Wolfgang Denk
Dear Wolfgang Denk, In message 1279395948-25864-4-git-send-email...@denx.de you wrote: This implementation is based on code from uClibc-0.9.30.3 but was modified and extended for use within U-Boot. Major modifications and extensions: * hsearch() [modified / extended]: - While the

[U-Boot] [PATCH 3/5] Add hash table support as base for new environment code

2010-07-17 Thread Wolfgang Denk
This implementation is based on code from uClibc-0.9.30.3 but was modified and extended for use within U-Boot. Major modifications and extensions: * hsearch() [modified / extended]: - While the standard version does not make any assumptions about the type of the stored data objects at all,