The following describes how to set up bhyve with Vagrant using the vagrant-bhyve plugin.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| typedef long jint; | |
| typedef int64_t jlong; | |
| typedef signed char jbyte; | |
| /* | |
| * JNI Types | |
| */ | |
| typedef unsigned char jboolean; | |
| typedef unsigned short jchar; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| try: | |
| import gdb | |
| inside_gdb = True | |
| except ImportError: | |
| inside_gdb = False | |
| if inside_gdb: |