naiclub Posted September 27, 2023 Share Posted September 27, 2023 On 9/16/2023 at 8:58 PM, matxpa said: Commits since 0.9.1 resolve that (missing compiled version #41) Where is the link to your version? I really want to try your version. I feel like there are a lot of details. Link to comment Share on other sites More sharing options...
miliuco Posted September 27, 2023 Share Posted September 27, 2023 @naiclub https://github.com/matxpa/About-This-Hack 1 Link to comment Share on other sites More sharing options...
naiclub Posted September 27, 2023 Share Posted September 27, 2023 7 minutes ago, miliuco said: @naiclub https://github.com/matxpa/About-This-Hack No, there is no ready-made app to download. Must compile the file only. Which I can't do. Link to comment Share on other sites More sharing options...
miliuco Posted September 27, 2023 Share Posted September 27, 2023 8 minutes ago, naiclub said: No, there is no ready-made app to download. Must compile the file only. Which I can't do. This is the original fork, it has app to download: https://github.com/0xCUB3/About-This-Hack Attached the @matxpa compiled app. About This Hack.app.zip 2 Link to comment Share on other sites More sharing options...
naiclub Posted September 27, 2023 Share Posted September 27, 2023 (edited) 13 minutes ago, miliuco said: This is the original fork, it has app to download: https://github.com/0xCUB3/About-This-Hack Attached the @matxpa compiled app. About This Hack.app.zip 21.53 MB · 1 download Only slightly different But the left side is better. We can choose the display menu or other things. As for the right-hand side, if you choose to view other menus, the app will hang and have to be opened again. Spoiler Edited September 27, 2023 by naiclub Link to comment Share on other sites More sharing options...
Slice Posted October 14, 2023 Author Share Posted October 14, 2023 On 9/17/2023 at 12:56 AM, miliuco said: @Slice Your current ATH: I guess storage data is not right. This is the code: return [""" \(name) \(size)(\(available)Available) """,String(percent)] } And the window: Prefixing percent with 1-: return [""" \(name) \(size)(\(available)Available) """,String(1-percent)] } And the window: Do you think so? Thanks. Thanks! I did this and publish https://github.com/CloverHackyColor/About-This-Hack/releases/tag/1.0.3 On 9/15/2023 at 8:36 PM, matxpa said: @Slice Hi Is it something like this you want ? That content can't be added to Ram Text Field Cell, imagine a MAcPro 2019 with 6 RAM slots, it would be better to create a specific RAM tab So here (snapshot) it's easy Your version is a mix of last 8-bit-cat ATH and last 0xCUB3 ATH isn't it ? You need in your repo 1) a new component called ToolTips.swift (with 1 code line, at this time) 2) a new function in ViewController.swift (func setToolTips()) 3) a new function in YOUR HardwareCollector.swift (static func getMemDesc() ) 1) ToolTips.swif import Foundation let ramtoolTip = HCRAM.getMemDesc() 2) To add to ViewController.swift func setToolTips(){ ram.toolTip = ramtoolTip } Verify the name of the Text Field Cell (Memory info not the column header) 3) Add that new function in HardwareCollector.swift (static func getMemDesc() ) just after (or where you want) static func getRam() ... static var thesysmemfile = "~/.ath/sysmem.txt" // put where you want in HardwareCollector.swift or don't use it and replace " + thesysmemfile + " with ~/.ath/sysmem.txt ... static func getMemDesc() -> String { var memInfoFormatted = "" let memoryDataTmp = run("echo $(egrep \"BANK |Manufacturer:|Part Number:\" " + thesysmemfile + " | sed -e 's/$/ /g' -e 's/^. *//g' -e 's/:/: /g' -e 's/: /: /g' | tr -d '\n' | sed 's/BANK /\\nBANK /g' )") let memoryDataArray = memoryDataTmp.components(separatedBy: "BANK ").filter({ $0 != ""}) for index in 0..<memoryDataArray.count { memInfoFormatted += ("BANK " + "\(memoryDataArray[index])" + run("echo \"\n\"")) } return "\(memInfoFormatted)" } With Term you'd better to test the egrep commande (removing protectors backslashes) ie. echo $(egrep "BANK |Manufacturer:|Part Number:" ~/.ath/sysmem.txt | sed -e 's/$/ /g' -e 's/^. *//g' -e 's/:/: /g' -e 's/: /: /g' | tr -d '\n' | sed 's/BANK /\\nBANK /g') and the result on my Laptop (old Laptop) BANK 0/DIMM0: Manufacturer: Micron Part Number: 8JTF51264HZ-1G6D 1 BANK 0/DIMM2: Manufacturer: G Skill Intl Part Number: F3-1600C11-8GRSL And, if you would, you could ameliorate that (lol) Regards I appreciated your efforts but the code you proposed is not compatible with my project so I can't use it. 4 Link to comment Share on other sites More sharing options...
miliuco Posted October 14, 2023 Share Posted October 14, 2023 (edited) @Slice It's working fine now. Thanks. Edited October 14, 2023 by miliuco Link to comment Share on other sites More sharing options...
Alpha22 Posted October 15, 2023 Share Posted October 15, 2023 @Slice version 1.0.3 ram memory is read right 2 Link to comment Share on other sites More sharing options...
naiclub Posted October 15, 2023 Share Posted October 15, 2023 (edited) Spoiler In VMware, it shows this value. It should be correct. Edited October 15, 2023 by naiclub Link to comment Share on other sites More sharing options...
asapreta Posted October 19, 2023 Share Posted October 19, 2023 On 10/14/2023 at 2:18 PM, Slice said: Thanks! I did this and publish https://github.com/CloverHackyColor/About-This-Hack/releases/tag/1.0.3 I appreciated your efforts but the code you proposed is not compatible with my project so I can't use it. Thanks for the update. But, unfortunately, this is the second release I try to open and it won't work. It "quit unexpectedly". Running on Sonoma. 1 1 Link to comment Share on other sites More sharing options...
naiclub Posted October 20, 2023 Share Posted October 20, 2023 7 hours ago, asapreta said: Thanks for the update. But, unfortunately, this is the second release I try to open and it won't work. It "quit unexpectedly". Running on Sonoma. Yes, I'm the same way as you. It was a sudden warning. Link to comment Share on other sites More sharing options...
Slice Posted October 20, 2023 Author Share Posted October 20, 2023 9 hours ago, asapreta said: Thanks for the update. But, unfortunately, this is the second release I try to open and it won't work. It "quit unexpectedly". Running on Sonoma. Is there any crash report? Link to comment Share on other sites More sharing options...
miliuco Posted October 20, 2023 Share Posted October 20, 2023 All versions released so far start fine on my system. Link to comment Share on other sites More sharing options...
turko35408 Posted October 26, 2023 Share Posted October 26, 2023 (edited) It was wrong. Edited October 26, 2023 by turko35408 Link to comment Share on other sites More sharing options...
Slice Posted October 26, 2023 Author Share Posted October 26, 2023 3 hours ago, turko35408 said: It was wrong. What was wrong? Link to comment Share on other sites More sharing options...
XanthraX Posted October 26, 2023 Share Posted October 26, 2023 On 10/20/2023 at 11:59 AM, miliuco said: All versions released so far start fine on my system. Work fine for me too. Link to comment Share on other sites More sharing options...
naiclub Posted October 27, 2023 Share Posted October 27, 2023 On 10/26/2023 at 1:41 PM, Slice said: What was wrong? What does it mean? Spoiler Link to comment Share on other sites More sharing options...
Slice Posted October 27, 2023 Author Share Posted October 27, 2023 16 minutes ago, naiclub said: What does it mean? Hide contents Show full report as text. Your screen is not enough. Link to comment Share on other sites More sharing options...
naiclub Posted October 27, 2023 Share Posted October 27, 2023 10 minutes ago, Slice said: Show full report as text. Your screen is not enough. I apologize. I just stopped using the Mac and removed the SSD from the Mac. I'm playing in Windows right now. 1 Link to comment Share on other sites More sharing options...
naiclub Posted October 30, 2023 Share Posted October 30, 2023 On 10/27/2023 at 8:23 PM, Slice said: Show full report as text. Your screen is not enough. Spoiler ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: About This Hack [1002] Path: /Users/USER/Desktop/About This Hack.app/Contents/MacOS/About This Hack Identifier: com.8itcat.About-This-Hack Version: 1.0.3 (1.0.3) Code Type: X86-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2023-10-30 12:20:52.0767 +0700 OS Version: macOS 14.2 (23C5030f) Report Version: 12 Anonymous UUID: 7C1F163C-A56E-C509-0F1D-BAA3A64C3F29 Time Awake Since Boot: 81 seconds System Integrity Protection: disabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_INSTRUCTION (SIGILL) Exception Codes: 0x0000000000000001, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 4 Illegal instruction: 4 Terminating Process: exc handler [1002] Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 About This Hack 0x10de4ba5c ViewControllerDisplays.start() + 5436 1 About This Hack 0x10de4a241 @objc ViewControllerDisplays.viewDidLoad() + 65 2 AppKit 0x7ff81d946608 -[NSViewController _sendViewDidLoad] + 87 3 AppKit 0x7ff81d990b2b _noteLoadCompletionForObject + 576 4 AppKit 0x7ff81d8bd8db -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1791 5 AppKit 0x7ff81d931e59 -[NSNib _instantiateNibWithExternalNameTable:options:] + 659 6 AppKit 0x7ff81d931ad1 -[NSNib _instantiateWithOwner:options:topLevelObjects:] + 143 7 AppKit 0x7ff81d93132d -[NSViewController loadView] + 331 8 AppKit 0x7ff81d93108a -[NSViewController _loadViewIfRequired] + 72 9 AppKit 0x7ff81de947ab __24-[NSViewController view]_block_invoke + 27 10 AppKit 0x7ff81d9289d0 NSPerformVisuallyAtomicChange + 134 11 AppKit 0x7ff81d931001 -[NSViewController view] + 123 12 AppKit 0x7ff81daa4974 -[NSTabViewItem _setInitialFirstResponder:autoGenerated:] + 238 13 CoreFoundation 0x7ff81a2ca4ea -[NSArray makeObjectsPerformSelector:withObject:] + 252 14 AppKit 0x7ff81dbb22bc -[NSTabView _finishedMakingConnections] + 92 15 CoreFoundation 0x7ff81a2c9d4f -[NSSet makeObjectsPerformSelector:] + 231 16 AppKit 0x7ff81d8bd6f0 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1300 17 AppKit 0x7ff81d931e59 -[NSNib _instantiateNibWithExternalNameTable:options:] + 659 18 AppKit 0x7ff81d931ad1 -[NSNib _instantiateWithOwner:options:topLevelObjects:] + 143 19 AppKit 0x7ff81e3e72ce -[NSStoryboard _instantiateControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] + 472 20 AppKit 0x7ff81d8a37ca NSApplicationMain + 744 21 About This Hack 0x10de487e9 main + 9 22 dyld 0x7ff819e70386 start + 1942 Thread 1: 0 libsystem_pthread.dylib 0x7ff81a1f4b88 start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x7ff81a1f4b88 start_wqthread + 0 Thread 3: 0 libsystem_pthread.dylib 0x7ff81a1f4b88 start_wqthread + 0 Thread 4: 0 libsystem_pthread.dylib 0x7ff81a1f4b88 start_wqthread + 0 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000600002894420 rbx: 0xffffffffffffffff rcx: 0x0100000000000000 rdx: 0x083dfff85d67aa1f rdi: 0x00007f79e4a2db80 rsi: 0x0000600003339d80 rbp: 0x00007ff7b20b9780 rsp: 0x00007ff7b20b9710 r8: 0x0000000000000000 r9: 0x00000000fba36194 r10: 0x00007ff85d67aa18 r11: 0x00007ff81b240e88 r12: 0x0000000000000001 r13: 0x00007ff819e30b50 r14: 0x00007f79e4a2db80 r15: 0x00006000028945d0 rip: 0x000000010de4ba5c rfl: 0x0000000000010246 cr2: 0x0000000000000000 Logical CPU: 1 Error Code: 0x00000000 Trap Number: 6 Thread 0 instruction stream: 32 ef ff ff 0f 0b 0f 0b-0f 0b 48 8d 3d 73 04 01 2.........H.=s.. 00 48 8d 35 7c 0a 00 00-e8 4b 87 00 00 e9 0d f4 .H.5|....K...... ff ff 0f 0b 0f 0b 0f 0b-48 8d 3d 4d 04 01 00 48 ........H.=M...H 8d 35 3e 0a 00 00 e8 2d-87 00 00 e9 9a f4 ff ff .5>....-........ 0f 0b 0f 0b 0f 0b 0f 0b-48 8d 3d 35 04 01 00 48 ........H.=5...H 8d 35 3e 0a 00 00 e8 0d-87 00 00 e9 2a f5 ff ff .5>.........*... [0f]0b 0f 0b 0f 0b 48 8d-3d 0f 04 01 00 48 8d 35 ......H.=....H.5 <== 00 0a 00 00 e8 ef 86 00-00 e9 bd f5 ff ff 0f 0b ................ 41 f6 c4 01 48 8b 5d b8-49 0f 45 dc 4c 89 e7 e8 A...H.].I.E.L... 98 86 00 00 48 89 df e8-82 85 00 00 49 89 c6 e9 ....H.......I... 1a f6 ff ff 0f 0b 48 8d-3d c7 03 01 00 48 8d 35 ......H.=....H.5 80 09 00 00 e8 af 86 00-00 80 3d 06 0d 01 00 01 ..........=..... Binary Images: 0x10e36f000 - 0x10e37efff libobjc-trampolines.dylib (*) <dd3b4c22-cb0f-3e47-a2b9-3c3abfebe7bd> /usr/lib/libobjc-trampolines.dylib 0x10de45000 - 0x10de58fff com.8itcat.About-This-Hack (1.0.3) <8bb799a5-e63c-361b-9101-506557768b00> /Users/USER/Desktop/About This Hack.app/Contents/MacOS/About This Hack 0x7ff81d89f000 - 0x7ff81eca6ff8 com.apple.AppKit (6.9) <c2dc6d6d-90e2-31a4-9b9d-5330c9d207d3> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7ff81a259000 - 0x7ff81a6f3fec com.apple.CoreFoundation (6.9) <79db72fd-1b87-3231-abf7-06fad4fe2419> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7ff819e6a000 - 0x7ff819f063bf dyld (*) <46f7af8b-83c8-3398-86d3-eb204ae8fdc7> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? 0x7ff81b211000 - 0x7ff81be48ff3 com.apple.Foundation (6.9) <fd02fa75-3bcc-320d-8c24-9c406550bbe3> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7ff819e28000 - 0x7ff819e69fc0 libobjc.A.dylib (*) <8ef116df-5f4b-39e1-9280-17b45fdda49b> /usr/lib/libobjc.A.dylib 0x7ff81a1f3000 - 0x7ff81a1fefff libsystem_pthread.dylib (*) <fbf74411-7105-3b73-bcb2-cbbc9a6976fa> /usr/lib/system/libsystem_pthread.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 0 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=497.5M resident=0K(0%) swapped_out_or_unallocated=497.5M(100%) Writable regions: Total=576.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=576.7M(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 1 Activity Tracing 256K 1 CG image 24K 1 ColorSync 224K 27 CoreServices 88K 1 CoreUI image data 240K 3 Foundation 16K 1 Kernel Alloc Once 8K 1 MALLOC 565.9M 40 MALLOC guard page 32K 8 STACK GUARD 56.0M 5 Stack 10.0M 5 VM_ALLOCATE 12K 3 __CTF 824 1 __DATA 20.0M 356 __DATA_CONST 18.7M 217 __DATA_DIRTY 811K 113 __FONT_DATA 2352 1 __LINKEDIT 176.8M 3 __OBJC_RO 71.0M 1 __OBJC_RW 2168K 2 __TEXT 320.7M 378 dyld private memory 260K 2 mapped file 192.4M 24 shared memory 804K 17 =========== ======= ======= TOTAL 1.4G 1212 ----------- Full Report ----------- {"app_name":"About This Hack","timestamp":"2023-10-30 12:20:58.00 +0700","app_version":"1.0.3","slice_uuid":"8bb799a5-e63c-361b-9101-506557768b00","build_version":"1.0.3","platform":1,"bundleID":"com.8itcat.About-This-Hack","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.2 (23C5030f)","roots_installed":0,"name":"About This Hack","incident_id":"698D497B-4284-45D6-AB52-6E4E992EEBA0"} { "uptime" : 81, "procRole" : "Foreground", "version" : 2, "userID" : 501, "deployVersion" : 210, "modelCode" : "iMac19,1", "coalitionID" : 1086, "osVersion" : { "train" : "macOS 14.2", "build" : "23C5030f", "releaseType" : "User" }, "captureTime" : "2023-10-30 12:20:52.0767 +0700", "codeSigningMonitor" : 0, "incident" : "698D497B-4284-45D6-AB52-6E4E992EEBA0", "pid" : 1002, "cpuType" : "X86-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2023-10-30 12:20:49.7939 +0700", "procStartAbsTime" : 79689179364, "procExitAbsTime" : 81920322435, "procName" : "About This Hack", "procPath" : "\/Users\/USER\/Desktop\/About This Hack.app\/Contents\/MacOS\/About This Hack", "bundleInfo" : {"CFBundleShortVersionString":"1.0.3","CFBundleVersion":"1.0.3","CFBundleIdentifier":"com.8itcat.About-This-Hack"}, "storeInfo" : {"deviceIdentifierForVendor":"4A7DCBBB-2425-5792-A145-CCCE3BAC284D","thirdParty":true}, "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "com.8itcat.About-This-Hack", "crashReporterKey" : "7C1F163C-A56E-C509-0F1D-BAA3A64C3F29", "codeSigningID" : "com.8itcat.About-This-Hack", "codeSigningTeamID" : "", "codeSigningFlags" : 570490885, "codeSigningValidationCategory" : 10, "codeSigningTrustLevel" : 4294967295, "sip" : "disabled", "exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_INSTRUCTION","signal":"SIGILL"}, "termination" : {"flags":0,"code":4,"namespace":"SIGNAL","indicator":"Illegal instruction: 4","byProc":"exc handler","byPid":1002}, "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 0, "threads" : [{"triggered":true,"id":7342,"instructionState":{"instructionStream":{"bytes":[50,239,255,255,15,11,15,11,15,11,72,141,61,115,4,1,0,72,141,53,124,10,0,0,232,75,135,0,0,233,13,244,255,255,15,11,15,11,15,11,72,141,61,77,4,1,0,72,141,53,62,10,0,0,232,45,135,0,0,233,154,244,255,255,15,11,15,11,15,11,15,11,72,141,61,53,4,1,0,72,141,53,62,10,0,0,232,13,135,0,0,233,42,245,255,255,15,11,15,11,15,11,72,141,61,15,4,1,0,72,141,53,0,10,0,0,232,239,134,0,0,233,189,245,255,255,15,11,65,246,196,1,72,139,93,184,73,15,69,220,76,137,231,232,152,134,0,0,72,137,223,232,130,133,0,0,73,137,198,233,26,246,255,255,15,11,72,141,61,199,3,1,0,72,141,53,128,9,0,0,232,175,134,0,0,128,61,6,13,1,0,1],"offset":96}},"threadState":{"r13":{"value":140703562926928,"symbolLocation":0,"symbol":"objc_release"},"rax":{"value":105553158816800},"rflags":{"value":66118},"cpu":{"value":1},"r14":{"value":140161503648640},"rsi":{"value":105553169980800},"r8":{"value":0},"cr2":{"value":0},"rdx":{"value":593912168066820639},"r10":{"value":140704695691800,"symbolLocation":0,"symbol":"OBJC_CLASS_$_NSTextField"},"r9":{"value":4221788564},"r15":{"value":105553158817232},"rbx":{"value":18446744073709551615},"trap":{"value":6},"err":{"value":0},"r11":{"value":140703583964808,"symbolLocation":0,"symbol":"-[NSObject(NSKeyValueObservingPrivate) _pendingChangeNotificationsArrayForKey:create:]"},"rip":{"value":4528061020,"matchesCrashFrame":1},"rbp":{"value":140701820753792},"rsp":{"value":140701820753680},"r12":{"value":1},"rcx":{"value":72057594037927936},"flavor":"x86_THREAD_STATE","rdi":{"value":140161503648640}},"queue":"com.apple.main-thread","frames":[{"imageOffset":27228,"symbol":"ViewControllerDisplays.start()","symbolLocation":5436,"imageIndex":1},{"imageOffset":21057,"symbol":"@objc ViewControllerDisplays.viewDidLoad()","symbolLocation":65,"imageIndex":1},{"imageOffset":685576,"symbol":"-[NSViewController _sendViewDidLoad]","symbolLocation":87,"imageIndex":2},{"imageOffset":989995,"symbol":"_noteLoadCompletionForObject","symbolLocation":576,"imageIndex":2},{"imageOffset":125147,"symbol":"-[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:]","symbolLocation":1791,"imageIndex":2},{"imageOffset":601689,"symbol":"-[NSNib _instantiateNibWithExternalNameTable:options:]","symbolLocation":659,"imageIndex":2},{"imageOffset":600785,"symbol":"-[NSNib _instantiateWithOwner:options:topLevelObjects:]","symbolLocation":143,"imageIndex":2},{"imageOffset":598829,"symbol":"-[NSViewController loadView]","symbolLocation":331,"imageIndex":2},{"imageOffset":598154,"symbol":"-[NSViewController _loadViewIfRequired]","symbolLocation":72,"imageIndex":2},{"imageOffset":6248363,"symbol":"__24-[NSViewController view]_block_invoke","symbolLocation":27,"imageIndex":2},{"imageOffset":563664,"symbol":"NSPerformVisuallyAtomicChange","symbolLocation":134,"imageIndex":2},{"imageOffset":598017,"symbol":"-[NSViewController view]","symbolLocation":123,"imageIndex":2},{"imageOffset":2120052,"symbol":"-[NSTabViewItem _setInitialFirstResponder:autoGenerated:]","symbolLocation":238,"imageIndex":2},{"imageOffset":464106,"symbol":"-[NSArray makeObjectsPerformSelector:withObject:]","symbolLocation":252,"imageIndex":3},{"imageOffset":3224252,"symbol":"-[NSTabView _finishedMakingConnections]","symbolLocation":92,"imageIndex":2},{"imageOffset":462159,"symbol":"-[NSSet makeObjectsPerformSelector:]","symbolLocation":231,"imageIndex":3},{"imageOffset":124656,"symbol":"-[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:]","symbolLocation":1300,"imageIndex":2},{"imageOffset":601689,"symbol":"-[NSNib _instantiateNibWithExternalNameTable:options:]","symbolLocation":659,"imageIndex":2},{"imageOffset":600785,"symbol":"-[NSNib _instantiateWithOwner:options:topLevelObjects:]","symbolLocation":143,"imageIndex":2},{"imageOffset":11829966,"symbol":"-[NSStoryboard _instantiateControllerWithIdentifier:creator:storyboardSegueTemplate:sender:]","symbolLocation":472,"imageIndex":2},{"imageOffset":18378,"symbol":"NSApplicationMain","symbolLocation":744,"imageIndex":2},{"imageOffset":14313,"symbol":"main","symbolLocation":9,"imageIndex":1},{"imageOffset":25478,"symbol":"start","symbolLocation":1942,"imageIndex":4}]},{"id":7343,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":5123},"r8":{"value":409602},"cr2":{"value":0},"rdx":{"value":123145341128704},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145341651832},"rbx":{"value":123145341652992},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703566875528},"rbp":{"value":0},"rsp":{"value":123145341652992},"r12":{"value":5193730},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145341652992}}},{"id":7344,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":8451},"r8":{"value":409602},"cr2":{"value":0},"rdx":{"value":123145341665280},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145342188408},"rbx":{"value":123145342189568},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703566875528},"rbp":{"value":0},"rsp":{"value":123145342189568},"r12":{"value":5193730},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145342189568}}},{"id":7346,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":19971},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145342201856},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":123145342726144},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703566875528},"rbp":{"value":0},"rsp":{"value":123145342726144},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145342726144}}},{"id":7347,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":22275},"r8":{"value":409604},"cr2":{"value":0},"rdx":{"value":123145342738432},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145343261568},"rbx":{"value":123145343262720},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703566875528},"rbp":{"value":0},"rsp":{"value":123145343262720},"r12":{"value":999430},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145343262720}}}], "usedImages" : [ { "source" : "P", "arch" : "x86_64h", "base" : 4533448704, "size" : 65536, "uuid" : "dd3b4c22-cb0f-3e47-a2b9-3c3abfebe7bd", "path" : "\/usr\/lib\/libobjc-trampolines.dylib", "name" : "libobjc-trampolines.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 4528033792, "CFBundleShortVersionString" : "1.0.3", "CFBundleIdentifier" : "com.8itcat.About-This-Hack", "size" : 81920, "uuid" : "8bb799a5-e63c-361b-9101-506557768b00", "path" : "\/Users\/USER\/Desktop\/About This Hack.app\/Contents\/MacOS\/About This Hack", "name" : "About This Hack", "CFBundleVersion" : "1.0.3" }, { "source" : "P", "arch" : "x86_64", "base" : 140703624196096, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.AppKit", "size" : 21004281, "uuid" : "c2dc6d6d-90e2-31a4-9b9d-5330c9d207d3", "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit", "name" : "AppKit", "CFBundleVersion" : "2487.30.100" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703567286272, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 4829165, "uuid" : "79db72fd-1b87-3231-abf7-06fad4fe2419", "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "2201" }, { "source" : "P", "arch" : "x86_64", "base" : 140703563161600, "size" : 639936, "uuid" : "46f7af8b-83c8-3398-86d3-eb204ae8fdc7", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000" }, { "source" : "P", "arch" : "x86_64", "base" : 140703583768576, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.Foundation", "size" : 12812276, "uuid" : "fd02fa75-3bcc-320d-8c24-9c406550bbe3", "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Versions\/C\/Foundation", "name" : "Foundation", "CFBundleVersion" : "2201" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703562891264, "size" : 270273, "uuid" : "8ef116df-5f4b-39e1-9280-17b45fdda49b", "path" : "\/usr\/lib\/libobjc.A.dylib", "name" : "libobjc.A.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703566868480, "size" : 49152, "uuid" : "fbf74411-7105-3b73-bcb2-cbbc9a6976fa", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" } ], "sharedCache" : { "base" : 140703562465280, "size" : 25769803776, "uuid" : "eb352a5a-cbcd-3eec-99f9-76c0abaadcee" }, "vmSummary" : "ReadOnly portion of Libraries: Total=497.5M resident=0K(0%) swapped_out_or_unallocated=497.5M(100%)\nWritable regions: Total=576.7M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=576.7M(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 128K 1 \nActivity Tracing 256K 1 \nCG image 24K 1 \nColorSync 224K 27 \nCoreServices 88K 1 \nCoreUI image data 240K 3 \nFoundation 16K 1 \nKernel Alloc Once 8K 1 \nMALLOC 565.9M 40 \nMALLOC guard page 32K 8 \nSTACK GUARD 56.0M 5 \nStack 10.0M 5 \nVM_ALLOCATE 12K 3 \n__CTF 824 1 \n__DATA 20.0M 356 \n__DATA_CONST 18.7M 217 \n__DATA_DIRTY 811K 113 \n__FONT_DATA 2352 1 \n__LINKEDIT 176.8M 3 \n__OBJC_RO 71.0M 1 \n__OBJC_RW 2168K 2 \n__TEXT 320.7M 378 \ndyld private memory 260K 2 \nmapped file 192.4M 24 \nshared memory 804K 17 \n=========== ======= ======= \nTOTAL 1.4G 1212 \n", "legacyInfo" : { "threadTriggered" : { "queue" : "com.apple.main-thread" } }, "logWritingSignature" : "4d5b50c4f1274932313d3de902abea129f2c3224", "trialInfo" : { "rollouts" : [ { "rolloutId" : "644114de41e7236e6177f9bd", "factorPackIds" : { }, "deploymentId" : 250000006 }, { "rolloutId" : "632e3f9c01482c74ed76392d", "factorPackIds" : { "SIRI_TEXT_TO_SPEECH" : "6525da32fb457e489b2ffba7" }, "deploymentId" : 250000288 } ], "experiments" : [ { "treatmentId" : "6dd670af-0633-45e4-ae5f-122ae4df02be", "experimentId" : "64406ba83deb637ac8a04419", "deploymentId" : 900000017 } ] } } Model: iMac19,1, BootROM 1968.120.12.0.0, 4 processors, Quad-Core Intel Core i5, 3.4 GHz, 16 GB, SMC 2.46f12 Graphics: AMD Radeon RX 560, AMD Radeon RX 560, PCIe, 4 GB Display: 24V2W1G5, 1920 x 1080 (1080p FHD - Full High Definition), Main, MirrorOff, Online Display: 2367, 1920 x 1080 (1080p FHD - Full High Definition), MirrorOff, Online Memory Module: BANK 1/ChannelA-DIMM1, 8 GB, DDR3, 2400 MHz, 0420, F3-2666C12-8GTXD Memory Module: BANK 3/ChannelB-DIMM1, 8 GB, DDR3, 2400 MHz, 0420, F3-2666C12-8GTXD Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Ethernet, Ethernet, en0 PCI Card: 8 Series/C220 Series Chipset Family USB xHCI, USB controller, Built In PCI Card: 8 Series/C220 Series Chipset Family MEI Controller, IMEI Controller, Built In PCI Card: Intel I217V PCI Express Gigabit Ethernet, Ethernet controller, Built In PCI Card: 8 Series/C220 Series Chipset Family USB EHCI #2, USB controller, Built In PCI Card: 8 Series/C220 Series Chipset High Definition Realtek ALC898 Audio Controller, Audio device, Built In PCI Card: 8 Series/C220 Series Chipset Family USB EHCI #1, USB controller, Built In PCI Card: 8 Series/C220 Series Chipset Family 6-port SATA Controller, SATA controller, Built In PCI Card: 8 Series/C220 Series Chipset Family SMBus Controller, SMBus Controller, Built In PCI Card: AMD Radeon RX 560, Display Controller, Slot-1 PCI Card: HDMI Audio Controller, Controller HDMI/DP, HDAU PCI Card: Sandisk Corp, NVMExpress, Slot-2 PCI Card: Marvell 88SE9172 SATA AHCI 6Gb/s Controller, SATA AHCI controller, Built In Serial ATA Device: Colorful SL500 640GB, 640.14 GB Serial ATA Device: ATAPI iHAS324 W, 112.1 MB USB Device: USB20Bus USB Device: hub_device USB Device: USB20Bus USB Device: hub_device USB Device: USB30Bus USB Device: hub_device USB Device: USB GAMING MOUSE USB Device: Dell USB Keyboard USB Device: hub_device USB Device: USB Audio Device Thunderbolt Bus: Hello, I'd like you to take a look at this. Link to comment Share on other sites More sharing options...
Slice Posted October 30, 2023 Author Share Posted October 30, 2023 @naiclub, What is your CPU? Strange to see "Illegal instruction". Link to comment Share on other sites More sharing options...
naiclub Posted October 30, 2023 Share Posted October 30, 2023 4 minutes ago, Slice said: @naiclub, What is your CPU? Strange to see "Illegal instruction". Thank you for your quick reply.. I use CPU according to signature. And I don't think it's a big problem at all. I just want to see what's the reason. There are still other apps that can be used. Link to comment Share on other sites More sharing options...
asapreta Posted October 30, 2023 Share Posted October 30, 2023 (edited) On 10/20/2023 at 3:21 AM, Slice said: Is there any crash report? I just grabbed it: Spoiler ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: About This Hack [1239] Path: /Applications/About This Hack-6.app/Contents/MacOS/About This Hack Identifier: com.8itcat.About-This-Hack Version: 1.0.3 (1.0.3) Code Type: X86-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2023-10-30 17:58:36.6153 -0300 OS Version: macOS 14.0 (23A344) Report Version: 12 Anonymous UUID: CBD0A586-9D03-9405-8A79-81135BF1764E Time Awake Since Boot: 1100 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_INSTRUCTION (SIGILL) Exception Codes: 0x0000000000000001, 0x0000000000000000 Termination Reason: Namespace SIGNAL, Code 4 Illegal instruction: 4 Terminating Process: exc handler [1239] Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 About This Hack 0x10de89a5c ViewControllerDisplays.start() + 5436 1 About This Hack 0x10de88241 @objc ViewControllerDisplays.viewDidLoad() + 65 2 AppKit 0x7ff808fcb39c -[NSViewController _sendViewDidLoad] + 87 3 AppKit 0x7ff809015967 _noteLoadCompletionForObject + 576 4 AppKit 0x7ff808f4271b -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1791 5 AppKit 0x7ff808fb6bd9 -[NSNib _instantiateNibWithExternalNameTable:options:] + 659 6 AppKit 0x7ff808fb6851 -[NSNib _instantiateWithOwner:options:topLevelObjects:] + 143 7 AppKit 0x7ff808fb60ad -[NSViewController loadView] + 331 8 AppKit 0x7ff808fb5e0a -[NSViewController _loadViewIfRequired] + 72 9 AppKit 0x7ff809517b97 __24-[NSViewController view]_block_invoke + 27 10 AppKit 0x7ff808fad750 NSPerformVisuallyAtomicChange + 134 11 AppKit 0x7ff808fb5d81 -[NSViewController view] + 123 12 AppKit 0x7ff8091294f8 -[NSTabViewItem _setInitialFirstResponder:autoGenerated:] + 238 13 CoreFoundation 0x7ff8059524ca -[NSArray makeObjectsPerformSelector:withObject:] + 252 14 AppKit 0x7ff809236dbc -[NSTabView _finishedMakingConnections] + 92 15 CoreFoundation 0x7ff805951d2f -[NSSet makeObjectsPerformSelector:] + 231 16 AppKit 0x7ff808f42530 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 1300 17 AppKit 0x7ff808fb6bd9 -[NSNib _instantiateNibWithExternalNameTable:options:] + 659 18 AppKit 0x7ff808fb6851 -[NSNib _instantiateWithOwner:options:topLevelObjects:] + 143 19 AppKit 0x7ff809a687be -[NSStoryboard _instantiateControllerWithIdentifier:creator:storyboardSegueTemplate:sender:] + 472 20 AppKit 0x7ff808f28628 NSApplicationMain + 744 21 About This Hack 0x10de867e9 main + 9 22 dyld 0x7ff8054f93a6 start + 1942 Thread 1: 0 libsystem_pthread.dylib 0x7ff80587db88 start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x7ff80587db88 start_wqthread + 0 Thread 3: 0 libsystem_pthread.dylib 0x7ff80587db88 start_wqthread + 0 Thread 4: 0 libsystem_pthread.dylib 0x7ff80587db88 start_wqthread + 0 Thread 0 crashed with X86 Thread State (64-bit): rax: 0x0000600002386dc0 rbx: 0xffffffffffffffff rcx: 0x0100000000000000 rdx: 0x083dfff848e82f4f rdi: 0x00007fc51d70bc00 rsi: 0x0000600003897500 rbp: 0x00007ff7b207b780 rsp: 0x00007ff7b207b710 r8: 0x0000000000000000 r9: 0x0000000082036992 r10: 0x00007ff848e82f48 r11: 0x00007ff8068c6588 r12: 0x0000000000000001 r13: 0x00007ff8054b9b50 r14: 0x00007fc51d70bc00 r15: 0x00006000023fbb40 rip: 0x000000010de89a5c rfl: 0x0000000000010246 cr2: 0x00007ff848e637d0 Logical CPU: 5 Error Code: 0x00000000 Trap Number: 6 Thread 0 instruction stream: 32 ef ff ff 0f 0b 0f 0b-0f 0b 48 8d 3d 73 04 01 2.........H.=s.. 00 48 8d 35 7c 0a 00 00-e8 4b 87 00 00 e9 0d f4 .H.5|....K...... ff ff 0f 0b 0f 0b 0f 0b-48 8d 3d 4d 04 01 00 48 ........H.=M...H 8d 35 3e 0a 00 00 e8 2d-87 00 00 e9 9a f4 ff ff .5>....-........ 0f 0b 0f 0b 0f 0b 0f 0b-48 8d 3d 35 04 01 00 48 ........H.=5...H 8d 35 3e 0a 00 00 e8 0d-87 00 00 e9 2a f5 ff ff .5>.........*... [0f]0b 0f 0b 0f 0b 48 8d-3d 0f 04 01 00 48 8d 35 ......H.=....H.5 <== 00 0a 00 00 e8 ef 86 00-00 e9 bd f5 ff ff 0f 0b ................ 41 f6 c4 01 48 8b 5d b8-49 0f 45 dc 4c 89 e7 e8 A...H.].I.E.L... 98 86 00 00 48 89 df e8-82 85 00 00 49 89 c6 e9 ....H.......I... 1a f6 ff ff 0f 0b 48 8d-3d c7 03 01 00 48 8d 35 ......H.=....H.5 80 09 00 00 e8 af 86 00-00 80 3d 06 0d 01 00 01 ..........=..... Binary Images: 0x10e098000 - 0x10e0a7fff libobjc-trampolines.dylib (*) <c43ce21c-a026-37b5-95ee-ef39fd2196de> /usr/lib/libobjc-trampolines.dylib 0x10de83000 - 0x10de96fff com.8itcat.About-This-Hack (1.0.3) <8bb799a5-e63c-361b-9101-506557768b00> /Applications/About This Hack-6.app/Contents/MacOS/About This Hack 0x7ff808f24000 - 0x7ff80a325fff com.apple.AppKit (6.9) <70a55260-7bb1-3c07-aac3-402d42fa9913> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7ff8058e1000 - 0x7ff805d7affc com.apple.CoreFoundation (6.9) <9daa29f3-fe48-39a9-a70d-1e0fd4750372> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7ff8054f3000 - 0x7ff80558f2ff dyld (*) <1289b60a-4980-342d-b1a4-250bbee392f1> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? 0x7ff806897000 - 0x7ff8074d4ffb com.apple.Foundation (6.9) <097dc90a-7059-3135-8fcb-74de290206a1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7ff8054b1000 - 0x7ff8054f2fc0 libobjc.A.dylib (*) <cb7ac98c-b998-3a03-a07d-6125de3391d1> /usr/lib/libobjc.A.dylib 0x7ff80587c000 - 0x7ff805887fff libsystem_pthread.dylib (*) <33c43114-85f0-3f32-86d7-8e6a2403d38c> /usr/lib/system/libsystem_pthread.dylib External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 0 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=491.8M resident=0K(0%) swapped_out_or_unallocated=491.8M(100%) Writable regions: Total=1.2G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.2G(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 1 Activity Tracing 256K 1 CG image 24K 1 ColorSync 220K 27 CoreServices 180K 1 CoreUI image data 220K 3 Foundation 16K 1 Kernel Alloc Once 8K 1 MALLOC 1.2G 39 MALLOC guard page 48K 12 STACK GUARD 56.0M 5 Stack 10.0M 5 VM_ALLOCATE 12K 3 __CTF 824 1 __DATA 19.8M 354 __DATA_CONST 18.7M 217 __DATA_DIRTY 811K 113 __FONT_DATA 2352 1 __LINKEDIT 179.8M 3 __OBJC_RO 70.6M 1 __OBJC_RW 2154K 2 __TEXT 312.0M 378 dyld private memory 260K 2 mapped file 192.3M 25 shared memory 780K 16 =========== ======= ======= TOTAL 2.0G 1213 ----------- Full Report ----------- {"app_name":"About This Hack","timestamp":"2023-10-30 17:58:42.00 -0300","app_version":"1.0.3","slice_uuid":"8bb799a5-e63c-361b-9101-506557768b00","build_version":"1.0.3","platform":1,"bundleID":"com.8itcat.About-This-Hack","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.0 (23A344)","roots_installed":0,"name":"About This Hack","incident_id":"11B6C420-C474-4C7D-AFB1-E885E3ED1631"} { "uptime" : 1100, "procRole" : "Foreground", "version" : 2, "userID" : 501, "deployVersion" : 210, "modelCode" : "iMac19,1", "coalitionID" : 1222, "osVersion" : { "train" : "macOS 14.0", "build" : "23A344", "releaseType" : "User" }, "captureTime" : "2023-10-30 17:58:36.6153 -0300", "codeSigningMonitor" : 0, "incident" : "11B6C420-C474-4C7D-AFB1-E885E3ED1631", "pid" : 1239, "cpuType" : "X86-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2023-10-30 17:58:34.7679 -0300", "procStartAbsTime" : 1178534765570, "procExitAbsTime" : 1180335104449, "procName" : "About This Hack", "procPath" : "\/Applications\/About This Hack-6.app\/Contents\/MacOS\/About This Hack", "bundleInfo" : {"CFBundleShortVersionString":"1.0.3","CFBundleVersion":"1.0.3","CFBundleIdentifier":"com.8itcat.About-This-Hack"}, "storeInfo" : {"deviceIdentifierForVendor":"11157F48-1E95-5249-94AF-49A6179D3FD9","thirdParty":true}, "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "com.8itcat.About-This-Hack", "crashReporterKey" : "CBD0A586-9D03-9405-8A79-81135BF1764E", "codeSigningID" : "com.8itcat.About-This-Hack", "codeSigningTeamID" : "", "codeSigningFlags" : 570503957, "codeSigningValidationCategory" : 10, "codeSigningTrustLevel" : 4294967295, "sip" : "enabled", "exception" : {"codes":"0x0000000000000001, 0x0000000000000000","rawCodes":[1,0],"type":"EXC_BAD_INSTRUCTION","signal":"SIGILL"}, "termination" : {"flags":0,"code":4,"namespace":"SIGNAL","indicator":"Illegal instruction: 4","byProc":"exc handler","byPid":1239}, "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 0, "threads" : [{"triggered":true,"id":17466,"instructionState":{"instructionStream":{"bytes":[50,239,255,255,15,11,15,11,15,11,72,141,61,115,4,1,0,72,141,53,124,10,0,0,232,75,135,0,0,233,13,244,255,255,15,11,15,11,15,11,72,141,61,77,4,1,0,72,141,53,62,10,0,0,232,45,135,0,0,233,154,244,255,255,15,11,15,11,15,11,15,11,72,141,61,53,4,1,0,72,141,53,62,10,0,0,232,13,135,0,0,233,42,245,255,255,15,11,15,11,15,11,72,141,61,15,4,1,0,72,141,53,0,10,0,0,232,239,134,0,0,233,189,245,255,255,15,11,65,246,196,1,72,139,93,184,73,15,69,220,76,137,231,232,152,134,0,0,72,137,223,232,130,133,0,0,73,137,198,233,26,246,255,255,15,11,72,141,61,199,3,1,0,72,141,53,128,9,0,0,232,175,134,0,0,128,61,6,13,1,0,1],"offset":96}},"threadState":{"r13":{"value":140703217458000,"symbolLocation":0,"symbol":"objc_release"},"rax":{"value":105553153519040},"rflags":{"value":66118},"cpu":{"value":5},"r14":{"value":140484579212288},"rsi":{"value":105553175606528},"r8":{"value":0},"cr2":{"value":140704351664080},"rdx":{"value":593912167722921807},"r10":{"value":140704351792968,"symbolLocation":0,"symbol":"OBJC_CLASS_$_NSTextField"},"r9":{"value":2181261714},"r15":{"value":105553153997632},"rbx":{"value":18446744073709551615},"trap":{"value":6},"err":{"value":0},"r11":{"value":140703238481288,"symbolLocation":0,"symbol":"-[NSObject(NSKeyValueObservingPrivate) _pendingChangeNotificationsArrayForKey:create:]"},"rip":{"value":4528314972,"matchesCrashFrame":1},"rbp":{"value":140701820499840},"rsp":{"value":140701820499728},"r12":{"value":1},"rcx":{"value":72057594037927936},"flavor":"x86_THREAD_STATE","rdi":{"value":140484579212288}},"queue":"com.apple.main-thread","frames":[{"imageOffset":27228,"symbol":"ViewControllerDisplays.start()","symbolLocation":5436,"imageIndex":1},{"imageOffset":21057,"symbol":"@objc ViewControllerDisplays.viewDidLoad()","symbolLocation":65,"imageIndex":1},{"imageOffset":684956,"symbol":"-[NSViewController _sendViewDidLoad]","symbolLocation":87,"imageIndex":2},{"imageOffset":989543,"symbol":"_noteLoadCompletionForObject","symbolLocation":576,"imageIndex":2},{"imageOffset":124699,"symbol":"-[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:]","symbolLocation":1791,"imageIndex":2},{"imageOffset":601049,"symbol":"-[NSNib _instantiateNibWithExternalNameTable:options:]","symbolLocation":659,"imageIndex":2},{"imageOffset":600145,"symbol":"-[NSNib _instantiateWithOwner:options:topLevelObjects:]","symbolLocation":143,"imageIndex":2},{"imageOffset":598189,"symbol":"-[NSViewController loadView]","symbolLocation":331,"imageIndex":2},{"imageOffset":597514,"symbol":"-[NSViewController _loadViewIfRequired]","symbolLocation":72,"imageIndex":2},{"imageOffset":6241175,"symbol":"__24-[NSViewController view]_block_invoke","symbolLocation":27,"imageIndex":2},{"imageOffset":563024,"symbol":"NSPerformVisuallyAtomicChange","symbolLocation":134,"imageIndex":2},{"imageOffset":597377,"symbol":"-[NSViewController view]","symbolLocation":123,"imageIndex":2},{"imageOffset":2118904,"symbol":"-[NSTabViewItem _setInitialFirstResponder:autoGenerated:]","symbolLocation":238,"imageIndex":2},{"imageOffset":464074,"symbol":"-[NSArray makeObjectsPerformSelector:withObject:]","symbolLocation":252,"imageIndex":3},{"imageOffset":3222972,"symbol":"-[NSTabView _finishedMakingConnections]","symbolLocation":92,"imageIndex":2},{"imageOffset":462127,"symbol":"-[NSSet makeObjectsPerformSelector:]","symbolLocation":231,"imageIndex":3},{"imageOffset":124208,"symbol":"-[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:]","symbolLocation":1300,"imageIndex":2},{"imageOffset":601049,"symbol":"-[NSNib _instantiateNibWithExternalNameTable:options:]","symbolLocation":659,"imageIndex":2},{"imageOffset":600145,"symbol":"-[NSNib _instantiateWithOwner:options:topLevelObjects:]","symbolLocation":143,"imageIndex":2},{"imageOffset":11814846,"symbol":"-[NSStoryboard _instantiateControllerWithIdentifier:creator:storyboardSegueTemplate:sender:]","symbolLocation":472,"imageIndex":2},{"imageOffset":17960,"symbol":"NSApplicationMain","symbolLocation":744,"imageIndex":2},{"imageOffset":14313,"symbol":"main","symbolLocation":9,"imageIndex":1},{"imageOffset":25510,"symbol":"start","symbolLocation":1942,"imageIndex":4}]},{"id":17479,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":4867},"r8":{"value":409604},"cr2":{"value":4545466368},"rdx":{"value":123145429434368},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145429957504},"rbx":{"value":123145429958656},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703221406600},"rbp":{"value":0},"rsp":{"value":123145429958656},"r12":{"value":999430},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145429958656}}},{"id":17480,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":1},"rsi":{"value":8195},"r8":{"value":409604},"cr2":{"value":4420222976},"rdx":{"value":123145429970944},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":123145430494072},"rbx":{"value":123145430495232},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703221406600},"rbp":{"value":0},"rsp":{"value":123145430495232},"r12":{"value":5193730},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145430495232}}},{"id":17523,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":17411},"r8":{"value":409602},"cr2":{"value":140704341349168},"rdx":{"value":123145430507520},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":123145431031808},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703221406600},"rbp":{"value":0},"rsp":{"value":123145431031808},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145431031808}}},{"id":17533,"frames":[{"imageOffset":7048,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":8}],"threadState":{"r13":{"value":0},"rax":{"value":33554800},"rflags":{"value":512},"cpu":{"value":0},"r14":{"value":0},"rsi":{"value":19971},"r8":{"value":409604},"cr2":{"value":140484354916352},"rdx":{"value":123145431044096},"r10":{"value":0},"r9":{"value":18446744073709551615},"r15":{"value":0},"rbx":{"value":123145431568384},"trap":{"value":133},"err":{"value":33554800},"r11":{"value":582},"rip":{"value":140703221406600},"rbp":{"value":0},"rsp":{"value":123145431568384},"r12":{"value":0},"rcx":{"value":0},"flavor":"x86_THREAD_STATE","rdi":{"value":123145431568384}}}], "usedImages" : [ { "source" : "P", "arch" : "x86_64h", "base" : 4530470912, "size" : 65536, "uuid" : "c43ce21c-a026-37b5-95ee-ef39fd2196de", "path" : "\/usr\/lib\/libobjc-trampolines.dylib", "name" : "libobjc-trampolines.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 4528287744, "CFBundleShortVersionString" : "1.0.3", "CFBundleIdentifier" : "com.8itcat.About-This-Hack", "size" : 81920, "uuid" : "8bb799a5-e63c-361b-9101-506557768b00", "path" : "\/Applications\/About This Hack-6.app\/Contents\/MacOS\/About This Hack", "name" : "About This Hack", "CFBundleVersion" : "1.0.3" }, { "source" : "P", "arch" : "x86_64", "base" : 140703278710784, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.AppKit", "size" : 20979712, "uuid" : "70a55260-7bb1-3c07-aac3-402d42fa9913", "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit", "name" : "AppKit", "CFBundleVersion" : "2487" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703221813248, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 4825085, "uuid" : "9daa29f3-fe48-39a9-a70d-1e0fd4750372", "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "2048.1.403" }, { "source" : "P", "arch" : "x86_64", "base" : 140703217692672, "size" : 639744, "uuid" : "1289b60a-4980-342d-b1a4-250bbee392f1", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000" }, { "source" : "P", "arch" : "x86_64", "base" : 140703238287360, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.Foundation", "size" : 12836860, "uuid" : "097dc90a-7059-3135-8fcb-74de290206a1", "path" : "\/System\/Library\/Frameworks\/Foundation.framework\/Versions\/C\/Foundation", "name" : "Foundation", "CFBundleVersion" : "2048.1.403" }, { "source" : "P", "arch" : "x86_64h", "base" : 140703217422336, "size" : 270273, "uuid" : "cb7ac98c-b998-3a03-a07d-6125de3391d1", "path" : "\/usr\/lib\/libobjc.A.dylib", "name" : "libobjc.A.dylib" }, { "source" : "P", "arch" : "x86_64", "base" : 140703221399552, "size" : 49152, "uuid" : "33c43114-85f0-3f32-86d7-8e6a2403d38c", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" } ], "sharedCache" : { "base" : 140703216996352, "size" : 25769803776, "uuid" : "62bff6a2-85e3-3e99-aa9c-94b8c34708c1" }, "vmSummary" : "ReadOnly portion of Libraries: Total=491.8M resident=0K(0%) swapped_out_or_unallocated=491.8M(100%)\nWritable regions: Total=1.2G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.2G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 128K 1 \nActivity Tracing 256K 1 \nCG image 24K 1 \nColorSync 220K 27 \nCoreServices 180K 1 \nCoreUI image data 220K 3 \nFoundation 16K 1 \nKernel Alloc Once 8K 1 \nMALLOC 1.2G 39 \nMALLOC guard page 48K 12 \nSTACK GUARD 56.0M 5 \nStack 10.0M 5 \nVM_ALLOCATE 12K 3 \n__CTF 824 1 \n__DATA 19.8M 354 \n__DATA_CONST 18.7M 217 \n__DATA_DIRTY 811K 113 \n__FONT_DATA 2352 1 \n__LINKEDIT 179.8M 3 \n__OBJC_RO 70.6M 1 \n__OBJC_RW 2154K 2 \n__TEXT 312.0M 378 \ndyld private memory 260K 2 \nmapped file 192.3M 25 \nshared memory 780K 16 \n=========== ======= ======= \nTOTAL 2.0G 1213 \n", "legacyInfo" : { "threadTriggered" : { "queue" : "com.apple.main-thread" } }, "logWritingSignature" : "1166cc9573daf83588e886f951273c76556ec44a", "trialInfo" : { "rollouts" : [ { "rolloutId" : "64628732bf2f5257dedc8988", "factorPackIds" : { }, "deploymentId" : 240000001 }, { "rolloutId" : "62745b8e85854550ad70b6e4", "factorPackIds" : { }, "deploymentId" : 240000073 } ], "experiments" : [ ] } } Model: iMac19,1, BootROM 1968.120.12.0.0, 6 processors, 6-Core Intel Core i5, 2,9 GHz, 32 GB, SMC 2.46f12 Graphics: AMD Radeon RX 570, AMD Radeon RX 570, PCIe, 4 GB Display: LG ULTRAGEAR, 2560 x 1440 (QHD/WQHD - Wide Quad High Definition), Main, MirrorOff, Online Display: Philips 191EL, 1366 x 768 (WSGA - Wide eXtended Graphics Array), MirrorOff, Online Memory Module: BANK 0/ChannelA-DIMM0, 8 GB, DDR4, 2666 MHz, Kingston, KHX2666C16/8G Memory Module: BANK 1/ChannelA-DIMM1, 8 GB, DDR4, 2666 MHz, Kingston, KHX3200C15/8G Memory Module: BANK 2/ChannelB-DIMM0, 8 GB, DDR4, 2666 MHz, Kingston, KHX2666C16/8G Memory Module: BANK 3/ChannelB-DIMM1, 8 GB, DDR4, 2666 MHz, Kingston, KHX3200C15/8G Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Ethernet, Ethernet, en0 PCI Card: olarila.com - The Real Vanilla Hackintosh, Olarila, Built In PCI Card: Patched by MaLd0n - olarila.com, MaLd0n, Built In PCI Card: Intel Corporation, Series Chipset SPI Controller, Serial Bus Controller, Built In Serial ATA Device: SanDisk SDSSDH2256G, 256,06 GB Serial ATA Device: HL-DT-ST BD-RE WH14NS40 Serial ATA Device: ST500DM002-1BD142, 500,11 GB Serial ATA Device: HGST HTS545050A7E380, 500,11 GB USB Device: USB31Bus USB Device: Touro Mobile 3.0 USB Device: USB GAMING MOUSE USB Device: Dell USB Keyboard Thunderbolt Bus: Edited October 30, 2023 by asapreta 1 Link to comment Share on other sites More sharing options...
Slice Posted October 31, 2023 Author Share Posted October 31, 2023 Thanks! But again I don't see a reason for panic. Looks like Sonoma bug. PS. Did you use OCLP? It may be its bug. Link to comment Share on other sites More sharing options...
asapreta Posted November 1, 2023 Share Posted November 1, 2023 On 10/31/2023 at 3:11 AM, Slice said: Thanks! But again I don't see a reason for panic. Looks like Sonoma bug. PS. Did you use OCLP? It may be its bug. No, I never used it. I update OC manually and the kexts using the OC Configurator. Link to comment Share on other sites More sharing options...
Recommended Posts