summaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
Diffstat (limited to 'www')
-rw-r--r--www/spec.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/www/spec.html b/www/spec.html
index 98d5a0d..9d9eba6 100644
--- a/www/spec.html
+++ b/www/spec.html
@@ -27,11 +27,13 @@
</p>
<blockquote>
<p>
-<i>Effects:</i> Allocates <tt>thrown_size</tt> bytes of memory. If memory
-can not be allocated, call <tt>std::terminate()</tt>.
+<i>Effects:</i> Allocates memory to hold the exception to be thrown.
+<tt>thrown_size</tt> is the size of the exception object. Can allocate
+additional memory to hold private data. If memory can not be allocated, call
+<tt>std::terminate()</tt>.
</p>
<p>
-<i>Returns:</i> A pointer to the allocated memory.
+<i>Returns:</i> A pointer to the memory allocated for the exception object.
</p>
</blockquote>
</td>
@@ -47,7 +49,7 @@ can not be allocated, call <tt>std::terminate()</tt>.
</p>
<blockquote>
<p>
-<i>Effects:</i> Deallocates the memory pointed to.
+<i>Effects:</i> Frees memory allocated by <tt>__cxa_allocate_exception</tt>.
</p>
</blockquote>
</td>