diff options
author | Jason Evans <je@fb.com> | 2014-05-16 05:46:24 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2014-05-16 05:46:24 (GMT) |
commit | b4d62cd61b46130b7947c3a427a2b007e7fa0eb8 (patch) | |
tree | 0f84b6c8747c78669faef6581e01e2a4f30ba603 /doc | |
parent | d4a238ccb0a88cd65cb6f38a517ed46e143d2fd1 (diff) | |
download | jemalloc-b4d62cd61b46130b7947c3a427a2b007e7fa0eb8.zip jemalloc-b4d62cd61b46130b7947c3a427a2b007e7fa0eb8.tar.gz jemalloc-b4d62cd61b46130b7947c3a427a2b007e7fa0eb8.tar.bz2 |
Minor doc edit.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/jemalloc.xml.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/jemalloc.xml.in b/doc/jemalloc.xml.in index 46e505f..308d0c6 100644 --- a/doc/jemalloc.xml.in +++ b/doc/jemalloc.xml.in @@ -189,15 +189,15 @@ <para>The <function>posix_memalign<parameter/></function> function allocates <parameter>size</parameter> bytes of memory such that the - allocation's base address is an even multiple of + allocation's base address is a multiple of <parameter>alignment</parameter>, and returns the allocation in the value pointed to by <parameter>ptr</parameter>. The requested - <parameter>alignment</parameter> must be a power of 2 at least as large - as <code language="C">sizeof(<type>void *</type>)</code>.</para> + <parameter>alignment</parameter> must be a power of 2 at least as large as + <code language="C">sizeof(<type>void *</type>)</code>.</para> <para>The <function>aligned_alloc<parameter/></function> function allocates <parameter>size</parameter> bytes of memory such that the - allocation's base address is an even multiple of + allocation's base address is a multiple of <parameter>alignment</parameter>. The requested <parameter>alignment</parameter> must be a power of 2. Behavior is undefined if <parameter>size</parameter> is not an integral multiple of |