diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-07-31 02:38:58 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-07-31 02:38:58 -0700 |
| commit | 954c33a854e61078e60ce21dfdc8befda6b8e81d (patch) | |
| tree | 91d18a298319ae58f2e0c665af1699e8386f6f04 /src | |
| parent | 0a4ec667c079c770ebdc61e7a4837b86c95a0f26 (diff) | |
| parent | 0cee3bb5317a220da7c123059a2c08daec288d30 (diff) | |
| download | mruby-954c33a854e61078e60ce21dfdc8befda6b8e81d.tar.gz mruby-954c33a854e61078e60ce21dfdc8befda6b8e81d.zip | |
Merge pull request #412 from monaka/pr-add-parameter-for-pool
POOL_ALIGNMENT POOL_PAGE_SIZE : Configurable parameters.
Diffstat (limited to 'src')
| -rw-r--r-- | src/pool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pool.c b/src/pool.c index 36c6fa8eb..daa6d0f69 100644 --- a/src/pool.c +++ b/src/pool.c @@ -9,7 +9,7 @@ #include <string.h> /* configuration section */ -/* allcated memory address should be multiple of POOL_ALLOC_ALIGN */ +/* allocated memory address should be multiple of POOL_ALIGNMENT */ /* or undef it if alignment does not matter */ #ifndef POOL_ALIGNMENT #define POOL_ALIGNMENT 4 |
