diff options
author | Saagar Jha <saagar@saagarjha.com> | 2019-02-15 12:50:52 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2019-02-15 12:50:52 +0000 |
commit | 91d78b8179b061cf7c9cca423e29480bc6367fc3 (patch) | |
tree | d6f4626392595431df34607dac504604f453308b /include | |
parent | 99df80f894ebf11f2211550925acc8b06f9972f8 (diff) | |
download | gdb-91d78b8179b061cf7c9cca423e29480bc6367fc3.zip gdb-91d78b8179b061cf7c9cca423e29480bc6367fc3.tar.gz gdb-91d78b8179b061cf7c9cca423e29480bc6367fc3.tar.bz2 |
Use the correct name for various MACH-O based operating systems in comments.
include * mach-o/loader.h: Use new OS names in comments.
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/mach-o/loader.h | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 2a71eee..7045bc9 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2019-02-15 Saagar Jha <saagar@saagarjha.com> + + * mach-o/loader.h: Use new OS names in comments. + 2019-02-11 Philippe Waroquiers <philippe.waroquiers@skynet.be> * splay-tree.h (splay_tree_delete_key_fn): Update comment. diff --git a/include/mach-o/loader.h b/include/mach-o/loader.h index a870e50..edf0a8b 100644 --- a/include/mach-o/loader.h +++ b/include/mach-o/loader.h @@ -174,8 +174,8 @@ typedef enum bfd_mach_o_load_command_type BFD_MACH_O_LC_ENCRYPTION_INFO = 0x21, /* Encrypted segment info. */ BFD_MACH_O_LC_DYLD_INFO = 0x22, /* Compressed dyld information. */ BFD_MACH_O_LC_LOAD_UPWARD_DYLIB = 0x23, /* Load upward dylib. */ - BFD_MACH_O_LC_VERSION_MIN_MACOSX = 0x24, /* Minimal MacOSX version. */ - BFD_MACH_O_LC_VERSION_MIN_IPHONEOS = 0x25, /* Minimal IOS version. */ + BFD_MACH_O_LC_VERSION_MIN_MACOSX = 0x24, /* Minimal macOS version. */ + BFD_MACH_O_LC_VERSION_MIN_IPHONEOS = 0x25, /* Minimal iOS version. */ BFD_MACH_O_LC_FUNCTION_STARTS = 0x26, /* Compressed table of func start. */ BFD_MACH_O_LC_DYLD_ENVIRONMENT = 0x27, /* Env variable string for dyld. */ BFD_MACH_O_LC_MAIN = 0x28, /* Entry point. */ @@ -186,7 +186,7 @@ typedef enum bfd_mach_o_load_command_type BFD_MACH_O_LC_LINKER_OPTIONS = 0x2d, /* Linker options. */ BFD_MACH_O_LC_LINKER_OPTIMIZATION_HINT = 0x2e,/* Optimization hints. */ BFD_MACH_O_LC_VERSION_MIN_TVOS = 0x2f, /* Minimal tvOS version. */ - BFD_MACH_O_LC_VERSION_MIN_WATCHOS = 0x30, /* Minimal WatchOS version. */ + BFD_MACH_O_LC_VERSION_MIN_WATCHOS = 0x30, /* Minimal watchOS version. */ BFD_MACH_O_LC_NOTE = 0x31, /* Region of arbitrary data. */ BFD_MACH_O_LC_BUILD_VERSION = 0x32, /* Generic build version. */ } |