diff options
author | Peter D'Hoye <peter.dhoye@gmail.com> | 2009-05-24 21:28:16 +0000 |
---|---|---|
committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2009-05-24 21:28:16 +0000 |
commit | 526b5580dabbfed7cfe5439dc3a90ec727f563c2 (patch) | |
tree | 22b1af92348785daad16714ee5e2b633017e0e48 /apps/plugins/pdbox/dbestfit-3.3/README | |
parent | 4f2dfcc01b260d946044ef2b6af5fe36cb772c8d (diff) | |
download | rockbox-526b5580dabbfed7cfe5439dc3a90ec727f563c2.tar.gz rockbox-526b5580dabbfed7cfe5439dc3a90ec727f563c2.zip |
Cut the files in half and it might work better (note to self: check your tree is really clean before patching)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21070 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pdbox/dbestfit-3.3/README')
-rw-r--r-- | apps/plugins/pdbox/dbestfit-3.3/README | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/apps/plugins/pdbox/dbestfit-3.3/README b/apps/plugins/pdbox/dbestfit-3.3/README index 919875df96..7452e36279 100644 --- a/apps/plugins/pdbox/dbestfit-3.3/README +++ b/apps/plugins/pdbox/dbestfit-3.3/README | |||
@@ -19,26 +19,3 @@ TODO: | |||
19 | 19 | ||
20 | * Make a separate application that samples the memory usage of a program | 20 | * Make a separate application that samples the memory usage of a program |
21 | and is capable of replaying it (in order to test properly). | 21 | and is capable of replaying it (in order to test properly). |
22 | |||
23 | Package: dbestfit - a dynamic memory allocator | ||
24 | Date: March 30, 2005 | ||
25 | Version: 3.3 | ||
26 | Author: Daniel Stenberg <daniel@haxx.se> | ||
27 | |||
28 | I wrote the dmalloc part for small allocation sizes to improve the behavior | ||
29 | of the built-in (first-fit) allocator found in pSOS (around 1996). | ||
30 | |||
31 | I wrote the bmalloc part (best-fit with splay-tree sorting) just for the fun | ||
32 | of it and to see how good malloc() clone I could make. The quality of my | ||
33 | implementation is still left to be judged in real-world tests. | ||
34 | |||
35 | TODO: | ||
36 | * Remove the final not-so-very-nice loop in dmalloc.c that checks for a block | ||
37 | with free fragments (when the list gets longer too much time might be spent | ||
38 | in that loop). | ||
39 | |||
40 | * Add semaphore protection in bmalloc. | ||
41 | |||
42 | * Make a separate application that samples the memory usage of a program | ||
43 | and is capable of replaying it (in order to test properly). | ||
44 | |||