C++ Exception Support: Difference between revisions

Carried over from C++.
[unchecked revision][unchecked revision]
(Carried over from C++.)
Line 106:
typedef __builtin_va_list va_list;
</source>
 
== See Also ==
 
* http://www.codesourcery.com/cxx-abi/abi-eh.html (While sounding like being specific to the Itanium, this is the base for the common C++ ABI)
 
* http://www.codeproject.com/cpp/exceptionhandler.asp (Specific to VC++.)
 
* http://www.microsoft.com/msj/0197/Exception/Exception.aspx (Article on SEH, the [[Stack#Unwinding the stack|stack-based unwinding]] used by VC++ and most other Windows compilers. Any use of stack-based SEH may or may not be covered by USPTO patent #5,628,016, held by Borland International, Inc.; GCC and most other UNIX compilers use the same table-based mechanism on the x86 that is the rule on RISC architectures, thus being unaffected by the patent.)
 
* http://www.kuzbass.ru:8086/docs/isocpp/except.html
 
* The standard header '''<exception>''', declaring several support functions.
448

edits