From 3c883588c333dd2baa1722afcb2130c5157c6748 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Mon, 18 Jul 2011 16:38:32 +0000 Subject: Update by Marshall Clow git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@135397 91177308-0d34-0410-b5e6-96231b3b80d8 --- www/spec.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'www') 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 @@

-Effects: Allocates thrown_size bytes of memory. If memory -can not be allocated, call std::terminate(). +Effects: Allocates memory to hold the exception to be thrown. +thrown_size is the size of the exception object. Can allocate +additional memory to hold private data. If memory can not be allocated, call +std::terminate().

-Returns: A pointer to the allocated memory. +Returns: A pointer to the memory allocated for the exception object.

@@ -47,7 +49,7 @@ can not be allocated, call std::terminate().

-Effects: Deallocates the memory pointed to. +Effects: Frees memory allocated by __cxa_allocate_exception.

-- cgit v1.2.3