diff options
| author | Jason Molenda <jmolenda@apple.com> | 2015-10-23 02:49:51 +0000 |
|---|---|---|
| committer | Jason Molenda <jmolenda@apple.com> | 2015-10-23 02:49:51 +0000 |
| commit | c611a740599b9b4e4fcb891bc71fac623c5c4ab9 (patch) | |
| tree | afa15df037b9836b18c916c2fdc4350214f57dc3 /lldb/tools/debugserver/source/DNBDefs.h | |
| parent | 96f0e0bfc94485787f3ac06865de7f01b454a86c (diff) | |
| download | bcm5719-llvm-c611a740599b9b4e4fcb891bc71fac623c5c4ab9.tar.gz bcm5719-llvm-c611a740599b9b4e4fcb891bc71fac623c5c4ab9.zip | |
Upstreaming the apple internal changes that accumulated during the
previous release. Most of the diffs are duplication in the xcode
project file caused by adding a "debugserver-mini" target. Jim
Ingham added support for a new SPI needed to request app launches
on iOS. Greg Clayton added code to indicate the platform of the
binary (macosx, ios, watchos, tvos) based on Mach-O load commands.
Jason Molenda added code so debugserver will identify when it is
running on a tvos/watchos device to lldb.
llvm-svn: 251091
Diffstat (limited to 'lldb/tools/debugserver/source/DNBDefs.h')
| -rw-r--r-- | lldb/tools/debugserver/source/DNBDefs.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/DNBDefs.h b/lldb/tools/debugserver/source/DNBDefs.h index 1abcb618d4c..e3757e903e5 100644 --- a/lldb/tools/debugserver/source/DNBDefs.h +++ b/lldb/tools/debugserver/source/DNBDefs.h @@ -96,9 +96,11 @@ typedef enum eLaunchFlavorSpringBoard = 3, #endif #ifdef WITH_BKS - eLaunchFlavorBKS = 4 + eLaunchFlavorBKS = 4, +#endif +#ifdef WITH_FBS + eLaunchFlavorFBS = 5 #endif - } nub_launch_flavor_t; #define NUB_STATE_IS_RUNNING(s) ((s) == eStateAttaching ||\ |

