diff options
author | Thomas Jarosch <tomj@simonv.com> | 2015-01-02 18:41:30 +0100 |
---|---|---|
committer | Thomas Jarosch <tomj@simonv.com> | 2015-01-02 18:51:15 +0100 |
commit | 66df5f3891779f8d55dd5afba1db466cea2cc2e9 (patch) | |
tree | 45d076287808f91ca434e27c1dac4066b3c48e73 /firmware/buflib.c | |
parent | 726537508737351d028c6730d30d9ec38fa34e4e (diff) | |
download | rockbox-66df5f3891779f8d55dd5afba1db466cea2cc2e9.tar.gz rockbox-66df5f3891779f8d55dd5afba1db466cea2cc2e9.zip |
Improve core_alloc() / buflib_alloc() documentation
Document the fact that buffers are movable by default.
Care must be taken to not pass them to functions that yield().
Also clarify other things:
- Passing NULL as "ops" to buflib_alloc_ex() causes
buffers to be movable by default (but not shrinkable).
- If you want shrinkable buffers during compaction,
you have to provide a shrink callback.
- To disable buffer movement, you have to pass NULL
for the move_callback inside the callback structure.
- The concept of default callbacks was removed
long ago, remove the only reference of it.
Change-Id: I3bf0ea6b08b507d80a19f3c2c835aca32b3f7800
Diffstat (limited to 'firmware/buflib.c')
-rw-r--r-- | firmware/buflib.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/firmware/buflib.c b/firmware/buflib.c index a47f0a0e62..0e00f1fe1f 100644 --- a/firmware/buflib.c +++ b/firmware/buflib.c | |||
@@ -481,7 +481,9 @@ buflib_buffer_in(struct buflib_context *ctx, int size) | |||
481 | buflib_buffer_shift(ctx, -size); | 481 | buflib_buffer_shift(ctx, -size); |
482 | } | 482 | } |
483 | 483 | ||
484 | /* Allocate a buffer of size bytes, returning a handle for it */ | 484 | /* Allocate a buffer of size bytes, returning a handle for it. |
485 | * Note: Buffers are movable since NULL is passed for "ops". | ||
486 | Don't pass them to functions that call yield() */ | ||
485 | int | 487 | int |
486 | buflib_alloc(struct buflib_context *ctx, size_t size) | 488 | buflib_alloc(struct buflib_context *ctx, size_t size) |
487 | { | 489 | { |
@@ -492,8 +494,11 @@ buflib_alloc(struct buflib_context *ctx, size_t size) | |||
492 | * | 494 | * |
493 | * The additional name parameter gives the allocation a human-readable name, | 495 | * The additional name parameter gives the allocation a human-readable name, |
494 | * the ops parameter points to caller-implemented callbacks for moving and | 496 | * the ops parameter points to caller-implemented callbacks for moving and |
495 | * shrinking. NULL for default callbacks (which do nothing but don't | 497 | * shrinking. |
496 | * prevent moving or shrinking) | 498 | * |
499 | * If you pass NULL for "ops", buffers are movable by default. | ||
500 | * Don't pass them to functions that call yield() like I/O. | ||
501 | * Buffers are only shrinkable when a shrink callback is given. | ||
497 | */ | 502 | */ |
498 | 503 | ||
499 | int | 504 | int |