diff options
| author | Mark Rowe <mark@vector35.com> | 2026-02-13 18:33:54 -0800 |
|---|---|---|
| committer | Mark Rowe <mark@vector35.com> | 2026-02-13 19:42:13 -0800 |
| commit | c9dbb48365bf1a0c5c06daa2234e21e64d9bc2f7 (patch) | |
| tree | dd476df611f5d74590d48afb869896670a8f560c /view/sharedcache/api/python/sharedcache_enums.py | |
| parent | e2feac85c58785640a2760f137a44c08ef953931 (diff) | |
[DSC] Correctly mark symbols as having local, global, or weak binding
Diffstat (limited to 'view/sharedcache/api/python/sharedcache_enums.py')
| -rw-r--r-- | view/sharedcache/api/python/sharedcache_enums.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/view/sharedcache/api/python/sharedcache_enums.py b/view/sharedcache/api/python/sharedcache_enums.py index 9a98eba4..d772adda 100644 --- a/view/sharedcache/api/python/sharedcache_enums.py +++ b/view/sharedcache/api/python/sharedcache_enums.py @@ -26,6 +26,13 @@ class SharedCacheRegionType(enum.IntEnum): SharedCacheRegionTypeNonImage = 3 +class SymbolBinding(enum.IntEnum): + NoBinding = 0 + LocalBinding = 1 + GlobalBinding = 2 + WeakBinding = 3 + + class SymbolType(enum.IntEnum): FunctionSymbol = 0 ImportAddressSymbol = 1 |
