Add 'finally' frame definition.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-06-03 19:21:03 +02:00
parent d0840d7eea
commit d57d6caf2d
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 0 deletions

View File

@ -1269,6 +1269,7 @@ struct VmFrame {
#define VM_FRAME_EXCEPTION 0x04 /* Special Exception frame */ #define VM_FRAME_EXCEPTION 0x04 /* Special Exception frame */
#define VM_FRAME_THROW 0x08 /* An exception was thrown */ #define VM_FRAME_THROW 0x08 /* An exception was thrown */
#define VM_FRAME_CATCH 0x10 /* Catch frame */ #define VM_FRAME_CATCH 0x10 /* Catch frame */
#define VM_FRAME_FINALLY 0x20 /* Finally frame */
/* /*
* When a debug stacktrace is extracted from Virtual Machine, all information about * When a debug stacktrace is extracted from Virtual Machine, all information about
* calls (file, line, class, method, arguments) are stored in this structure. * calls (file, line, class, method, arguments) are stored in this structure.