-
Notifications
You must be signed in to change notification settings - Fork 6.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Freezing and GUI Issues #7863
Comments
Could you check your application logs and see if there are any errors when just opening it once the first time? |
I am not exactly sure where I would find the application logs on MacOS for Ghidra. |
When Ghidra is in this state, from an OS console window, run:
The output of Also, the logs on my Mac live at: |
For the Your application log shows that your have an |
I consistently have this issue, no matter what I do but I do not have low memory on my computer when I run into this I usually have plenty available when looking at my stats menu. The binary itself is only 700kb so I find it weird that it would OOM like that. As per the jstack log I ran the command with the PID and piped the wrong command into the file... |
I see you are on a beta version of macOS. Can you try importing something other than a Mach-O. When it freezes, can you tell if it's opening the dyld_shared_cache from your system? |
I am not referring to your computer's available memory, but to the memory that the Java process is allowed to use. The log file indicates that it will not use more than about 4G of memory. Once Ghidra's Java process hits that limit, it will stop working. I have not seen one binary of that size cause this issue. But, you mentioned you are running 2 Code Browsers and loading 2 binaries. Regarding the jstack, yes, it may be helpful to have the output that was sent to the file. |
I am running beta macOS, I am loading the libapplearchive. I told it to grab things from disc, which it did successfully and imported everything. I then saved and closed ghidra. Then I tried opening libapplearchive and then freeze occurs. This occurs with 1 code browser open. Sometimes opening a second one would briefly cause the first code browser to become responsive. |
Exactly the same problem occurs when working with the instagram app for iOS. Everything is working well in 11.2.1. The problems started with version 11.3. macOS 15.3.1 (24D70) |
Changing MAXMEM to 16G has increased the loading speed of the project, but the interface still freezes |
Address Overflow in subtract: 0377b214 - 0x5cad892
ghidra.program.model.address.AddressOutOfBoundsException: Address Overflow in subtract: 0377b214 - 0x5cad892
at ghidra.program.model.address.AbstractAddressSpace.add(AbstractAddressSpace.java:424)
at ghidra.program.model.address.GenericAddressSpace.add(GenericAddressSpace.java:21)
at ghidra.program.model.address.GenericAddress.add(GenericAddress.java:237)
at ghidra.app.util.bin.format.swift.SwiftTypeMetadata.parsePointerTable(SwiftTypeMetadata.java:499)
at ghidra.app.util.bin.format.swift.SwiftTypeMetadata.parseProtocolDescriptors(SwiftTypeMetadata.java:392)
at ghidra.app.util.bin.format.swift.SwiftTypeMetadata.parse(SwiftTypeMetadata.java:154)
at ghidra.app.util.bin.format.swift.SwiftTypeMetadata.<init>(SwiftTypeMetadata.java:71)
at ghidra.app.plugin.core.analysis.SwiftTypeMetadataAnalyzer.added(SwiftTypeMetadataAnalyzer.java:54)
at ghidra.app.plugin.core.analysis.AnalysisScheduler.runAnalyzer(AnalysisScheduler.java:186)
at ghidra.app.plugin.core.analysis.AnalysisTask.applyTo(AnalysisTask.java:37)
at ghidra.app.plugin.core.analysis.AnalysisTask.applyTo(AnalysisTask.java:24)
at ghidra.app.plugin.core.analysis.AutoAnalysisManager$AnalysisTaskWrapper.run(AutoAnalysisManager.java:660)
at ghidra.app.plugin.core.analysis.AutoAnalysisManager.startAnalysis(AutoAnalysisManager.java:760)
at ghidra.app.plugin.core.analysis.AutoAnalysisManager.startAnalysis(AutoAnalysisManager.java:639)
at ghidra.app.plugin.core.analysis.AutoAnalysisManager.startAnalysis(AutoAnalysisManager.java:604)
at ghidra.app.plugin.core.analysis.AnalysisBackgroundCommand.applyTo(AnalysisBackgroundCommand.java:55)
at ghidra.app.plugin.core.analysis.AnalysisBackgroundCommand.applyTo(AnalysisBackgroundCommand.java:33)
at ghidra.framework.plugintool.mgr.BackgroundCommandTask.run(BackgroundCommandTask.java:103)
at ghidra.framework.plugintool.mgr.ToolTaskManager.run(ToolTaskManager.java:351)
at java.base/java.lang.Thread.run(Thread.java:1570) Build Date: 2025-Feb-19 1001 EST |
For me I've tested 11.3,11.3.1,11.4(from master) and I have issues on all of them. |
Can someone attach a binary that is failing so i can try to replicate? |
I can't send the binary but here is the info and its easy to get if you have an apple account. I then extracted the dyld from this by using ipsw ( Then I split the dyld file by using (ipsw dyld split dyld_shared_cache_arm64e) When loading this I told it to use the option for include libraries from disk(I have macOS 15.4b1 installed on my Mac which is an m1 series device). Does this help? |
Thanks I'll take a look tomorrow. If you don't check the option to load the libraries, do you still have the issue? |
I would still have freezes but they are not nearly as bad. |
@adrmnv thanks, i am seeing the performance issues and will investigate. |
Note that parts of this binary are encrypted, so i assume a lot of the issues are coming from that. |
@H4MST3R3N3RGYBALL is your binary encrypted too? |
Mine is not. |
Ok I got the 15.4 BETA 2 ipsw, and i extracted the I need to play around more with the output of |
For IPSW, make sure you installed xcode and inside of xcode options you can select the command line tools make sure one of those is set to the latest xcode you are using. It uses the built in stuff inside of xcode to extract the shared cache. If you need any screenshots of this let me know. I haven't tried opening it as a filesystem yet, I didn't even know ghidra could do that. Although the primary issue I have is I have a workflow where I am extracting the file and then running diff tool against it and am unsure how that would work if I maintain it from within ghidra. This is also a command to make your command line tools for xcode switch without the GUI: |
Additionally the person who makes ipsw is quite active in the hackdifferent discord. They seem to use a lot of ghidra based on there github projects. Hope this helps! |
That would be @blacktop who may or may not have helpful input here idk. |
Please also NOTE that @ryanmkurtz has put a TON of work into getting Ghidra to support loading a FULL dyld_shared_cache and then "lazily" loading dylibs into Ghidra one at a time and allowing you to right click on "red" addresses to then load in their dylib/stub island etc (similar to how IDA has done it for a long time and how Binary Ninja is just now attempting to do) This is most likely what you really want to do and will give you the best RE experience. |
@ryanmkurtz I do feel like Ghidra should be able to handle XCode extracted dylibs without freezing/crashing the UI though? So it might still be worth investigating that |
Indeed, i want to get to the bottom of this. I will keep this open until I do. I'm currently multitasking though. |
decrypted files are processed without freezes, but after closing ghidra and reopening the application, the application stops loading. The app was loading like this for 4-5 hours, and nothing happened. https://drive.google.com/file/d/1txUOv1C3SU0J5bJ85mHx2HeAySSfVqOa/view?usp=share_link |
It looks like you closed Ghidra with the CodeBrowser open. So the freeze happens when simply restarting Ghidra? This implies the problem has nothing at all to do with Mach-O loading or analysis. Can we get more |
If I manage to replicate this again I'll create a jstack. Currently busy doing some other tasks but I should have some more time to work on this next week. |
![]() `Full thread dump Java HotSpot(TM) 64-Bit Server VM (22.0.2+9-70 mixed mode): Threads class SMR info: "Reference Handler" #9 [24067] daemon prio=10 os_prio=31 cpu=123,53ms elapsed=109,27s tid=0x0000000144814e00 nid=24067 waiting on condition [0x000000017045a000] "Finalizer" #10 [24323] daemon prio=8 os_prio=31 cpu=2,29ms elapsed=109,27s tid=0x00000001458e8400 nid=24323 in Object.wait() [0x0000000170666000] "Signal Dispatcher" #11 [24835] daemon prio=9 os_prio=31 cpu=0,13ms elapsed=109,27s tid=0x000000014603a400 nid=24835 waiting on condition [0x0000000000000000] "Service Thread" #12 [28675] daemon prio=9 os_prio=31 cpu=1,10ms elapsed=109,27s tid=0x000000014603ac00 nid=28675 runnable [0x0000000000000000] "Monitor Deflation Thread" #13 [25603] daemon prio=9 os_prio=31 cpu=7,46ms elapsed=109,27s tid=0x000000014603b400 nid=25603 runnable [0x0000000000000000] "C2 CompilerThread0" #14 [28419] daemon prio=9 os_prio=31 cpu=11121,42ms elapsed=109,27s tid=0x000000014603bc00 nid=28419 waiting on condition [0x0000000000000000] "C1 CompilerThread0" #17 [27907] daemon prio=9 os_prio=31 cpu=1670,31ms elapsed=109,27s tid=0x0000000144810e00 nid=27907 waiting on condition [0x0000000000000000] "Common-Cleaner" #18 [26371] daemon prio=8 os_prio=31 cpu=1,56ms elapsed=109,25s tid=0x0000000137010200 nid=26371 waiting on condition [0x00000001712ae000] "Notification Thread" #19 [27651] daemon prio=9 os_prio=31 cpu=0,02ms elapsed=109,23s tid=0x0000000101889e00 nid=27651 runnable [0x0000000000000000] "AppKit Thread" #20 [259] daemon prio=5 os_prio=31 cpu=1715,71ms elapsed=109,19s tid=0x0000000137096800 nid=259 runnable [0x0000000000000000] "AWT-Shutdown" #21 [64003] prio=5 os_prio=31 cpu=0,98ms elapsed=109,16s tid=0x0000000137932200 nid=64003 in Object.wait() [0x00000001716c6000] "DestroyJavaVM" #23 [9731] prio=5 os_prio=31 cpu=135,65ms elapsed=108,97s tid=0x00000001308a1800 nid=9731 waiting on condition [0x0000000000000000] "Log4j2-TF-3-Scheduled-1" #36 [76819] daemon prio=5 os_prio=31 cpu=0,63ms elapsed=108,72s tid=0x000000013773f400 nid=76819 waiting on condition [0x000000017306e000] "Java2D Queue Flusher" #40 [88583] daemon prio=10 os_prio=31 cpu=261,12ms elapsed=108,54s tid=0x0000000137749a00 nid=88583 in Object.wait() [0x0000000173692000] "Java2D Disposer" #41 [89091] daemon prio=10 os_prio=31 cpu=1,89ms elapsed=108,53s tid=0x0000000137751e00 nid=89091 waiting on condition [0x000000017389e000] "AWT-EventQueue-0" #44 [128523] prio=6 os_prio=31 cpu=2359,25ms elapsed=107,87s tid=0x0000000137a3c200 nid=128523 in Object.wait() [0x000000039e2c8000] "TimerQueue" #45 [92947] daemon prio=5 os_prio=31 cpu=59,57ms elapsed=107,70s tid=0x0000000174259c00 nid=92947 waiting on condition [0x00000003ca6f2000] "GhidraSwinglessTimer" #48 [90643] daemon prio=6 os_prio=31 cpu=0,04ms elapsed=106,47s tid=0x0000000130d71200 nid=90643 in Object.wait() [0x0000000363ba6000] "SwingWorker-pool-4-thread-1" #53 [126479] daemon prio=5 os_prio=31 cpu=0,47ms elapsed=106,44s tid=0x0000000140bec800 nid=126479 waiting on condition [0x0000000363db2000] "File System Listener" #57 [126431] daemon prio=6 os_prio=31 cpu=0,07ms elapsed=92,63s tid=0x000000014606d200 nid=126431 waiting on condition [0x00000003c14b6000] "GTimer" #60 [117063] daemon prio=6 os_prio=31 cpu=0,70ms elapsed=85,11s tid=0x000000016a017200 nid=117063 in Object.wait() [0x000000039e836000] "SwingWorker-pool-4-thread-2" #66 [123695] daemon prio=5 os_prio=31 cpu=0,14ms elapsed=50,45s tid=0x0000000140bb8200 nid=123695 waiting on condition [0x000000039eff2000] "SwingWorker-pool-4-thread-3" #68 [116663] daemon prio=5 os_prio=31 cpu=0,17ms elapsed=50,38s tid=0x000000013793c600 nid=116663 waiting on condition [0x000000039f616000] "FelixDispatchQueue" #71 [99467] prio=6 os_prio=31 cpu=0,09ms elapsed=40,04s tid=0x0000000140eaf800 nid=99467 in Object.wait() [0x000000039ecda000] "FelixResolver-1" #72 [113219] daemon prio=6 os_prio=31 cpu=0,07ms elapsed=40,01s tid=0x0000000130ddb800 nid=113219 waiting on condition [0x000000039f1fe000] "FelixResolver-2" #73 [115543] daemon prio=6 os_prio=31 cpu=1,30ms elapsed=40,01s tid=0x0000000145b2ce00 nid=115543 waiting on condition [0x000000039f40a000] "FelixResolver-3" #74 [98427] daemon prio=6 os_prio=31 cpu=0,04ms elapsed=40,01s tid=0x0000000145b2d600 nid=98427 waiting on condition [0x00000003af506000] "FelixResolver-4" #75 [129055] daemon prio=6 os_prio=31 cpu=1,75ms elapsed=40,01s tid=0x0000000145b2c000 nid=129055 waiting on condition [0x00000003af712000] "FelixResolver-5" #76 [96431] daemon prio=6 os_prio=31 cpu=0,26ms elapsed=40,01s tid=0x0000000140d48200 nid=96431 waiting on condition [0x00000003bc4c6000] "FelixFrameworkWiring" #77 [99103] daemon prio=6 os_prio=31 cpu=0,08ms elapsed=39,99s tid=0x0000000130dde200 nid=99103 in Object.wait() [0x00000003bc6d2000] "FelixStartLevel" #78 [95795] daemon prio=6 os_prio=31 cpu=0,14ms elapsed=39,99s tid=0x0000000130ddea00 nid=95795 in Object.wait() [0x00000003bc8de000] "GTree Worker-pool-2-thread-2" #79 [97211] daemon prio=5 os_prio=31 cpu=0,37ms elapsed=39,65s tid=0x0000000137c21e00 nid=97211 waiting on condition [0x00000003bec05000] "Threaded Table Model Update Manager: Symbols" #81 [112643] prio=6 os_prio=31 cpu=0,13ms elapsed=39,42s tid=0x000000016a8d1000 nid=112643 waiting on condition [0x00000003bf01e000] "Threaded Table Model Update Manager: Bookmarks" #83 [113727] prio=6 os_prio=31 cpu=0,27ms elapsed=39,40s tid=0x000000016a822c00 nid=113727 waiting on condition [0x00000003bf22a000] "Threaded Table Model Update Manager: Source File Table Model" #84 [118403] prio=6 os_prio=31 cpu=0,09ms elapsed=39,32s tid=0x000000014631ac00 nid=118403 waiting on condition [0x00000003622aa000] "Threaded Table Model Update Manager: Transformer Table Model" #85 [110595] prio=6 os_prio=31 cpu=0,08ms elapsed=39,32s tid=0x0000000146319600 nid=110595 waiting on condition [0x0000000362812000] "Threaded Table Model Update Manager: Functions" #86 [107267] prio=6 os_prio=31 cpu=0,06ms elapsed=39,32s tid=0x0000000146319e00 nid=107267 waiting on condition [0x00000003be276000] "Threaded Table Model Update Manager: Function Tags" #87 [107779] prio=6 os_prio=31 cpu=0,07ms elapsed=39,32s tid=0x000000014631d600 nid=107779 waiting on condition [0x00000003be482000] "Threaded Table Model Update Manager: Function Tags" #88 [108035] prio=6 os_prio=31 cpu=0,06ms elapsed=39,32s tid=0x000000014631de00 nid=108035 waiting on condition [0x00000003be68e000] "Threaded Table Model Update Manager: Function Tags Applied Functions" #89 [108291] prio=6 os_prio=31 cpu=0,07ms elapsed=39,32s tid=0x000000014631e600 nid=108291 waiting on condition [0x00000003be89a000] "Threaded Table Model Update Manager: Comment Window" #90 [109571] prio=6 os_prio=31 cpu=0,07ms elapsed=39,32s tid=0x000000014631ee00 nid=109571 waiting on condition [0x00000003c0516000] "Threaded Table Model Update Manager: Data" #91 [109059] prio=6 os_prio=31 cpu=0,05ms elapsed=39,32s tid=0x000000014631f600 nid=109059 waiting on condition [0x00000003c0722000] "Threaded Table Model Update Manager: Symbol References" #92 [108547] prio=6 os_prio=31 cpu=0,07ms elapsed=39,32s tid=0x000000014631fe00 nid=108547 waiting on condition [0x00000003c092e000] "Threaded Table Model Update Manager: Relocation Table Model" #93 [131331] prio=6 os_prio=31 cpu=0,05ms elapsed=39,32s tid=0x0000000144c73400 nid=131331 waiting on condition [0x00000003c16c2000] "Threaded Table Model Update Manager: Defined String Table" #94 [131587] prio=6 os_prio=31 cpu=0,05ms elapsed=39,32s tid=0x0000000146320600 nid=131587 waiting on condition [0x00000003c2912000] "Attach Listener" #95 [55003] daemon prio=9 os_prio=31 cpu=0,33ms elapsed=0,11s tid=0x0000000101823a00 nid=55003 waiting on condition [0x0000000000000000] "G1 Conc#2" os_prio=31 cpu=9,97ms elapsed=108,64s tid=0x000000014053cf70 nid=87811 runnable "G1 Conc#1" os_prio=31 cpu=12,80ms elapsed=108,64s tid=0x000000014053c930 nid=87563 runnable "GC Thread#10" os_prio=31 cpu=459,52ms elapsed=108,91s tid=0x00000001014434a0 nid=79619 runnable "GC Thread#9" os_prio=31 cpu=457,34ms elapsed=108,91s tid=0x0000000101442b40 nid=72707 runnable "GC Thread#8" os_prio=31 cpu=458,68ms elapsed=108,91s tid=0x00000001014421e0 nid=80131 runnable "GC Thread#7" os_prio=31 cpu=457,64ms elapsed=108,91s tid=0x0000000101441880 nid=72451 runnable "GC Thread#6" os_prio=31 cpu=458,20ms elapsed=108,91s tid=0x0000000101440f20 nid=80643 runnable "GC Thread#5" os_prio=31 cpu=454,55ms elapsed=108,91s tid=0x00000001014405c0 nid=71683 runnable "GC Thread#4" os_prio=31 cpu=459,51ms elapsed=108,91s tid=0x000000010143fc60 nid=80899 runnable "GC Thread#3" os_prio=31 cpu=458,54ms elapsed=108,91s tid=0x000000010143f6f0 nid=81411 runnable "GC Thread#2" os_prio=31 cpu=458,56ms elapsed=108,91s tid=0x000000010143f180 nid=81923 runnable "GC Thread#1" os_prio=31 cpu=459,46ms elapsed=108,91s tid=0x000000010143ec10 nid=86307 runnable "VM Thread" os_prio=31 cpu=56,34ms elapsed=109,28s tid=0x000000014470a8d0 nid=19715 runnable "VM Periodic Task Thread" os_prio=31 cpu=39,59ms elapsed=109,30s tid=0x00000001446069e0 nid=17667 waiting on condition "G1 Service" os_prio=31 cpu=5,71ms elapsed=109,30s tid=0x0000000144708840 nid=17155 runnable "G1 Refine#0" os_prio=31 cpu=82,99ms elapsed=109,30s tid=0x0000000145865c00 nid=16643 runnable "G1 Conc#0" os_prio=31 cpu=10,74ms elapsed=109,30s tid=0x0000000145007b10 nid=14083 runnable "G1 Main Marker" os_prio=31 cpu=0,36ms elapsed=109,30s tid=0x0000000145007190 nid=13315 runnable "GC Thread#0" os_prio=31 cpu=459,65ms elapsed=109,30s tid=0x00000001450069f0 nid=14595 runnable JNI global refs: 176, weak refs: 495 |
@adrmnv The issue in your trace (and I'm assuming from OP too) is this:
We have made a call into the native JVM code to update the state of the main window. This call is stuck. It is not a deadlock, but our system is just waiting for the call to complete. Seems like this will wait forever, unless there is eventually some sort of timeout. I'm curious to know if you experience this on Java 21. |
Would you mind trying with JDK 21? |
Sure, may I ask the exact java version you are using? I can see if I can duplicate this issue on that version as well just to remove some of the variables? |
With that and latest ghidra built I wasn't able to replicate the lag. |
@H4MST3R3N3RGYBALL This is very helpful, thank you! |
JDK 24 comes out next week. Perhaps you can try that and report back. Here's a similar error i found: https://youtrack.jetbrains.com/issue/JBR-8192/Deadlock |
openjdk 21.0.2 2024-01-16 2025-03-13 20:18:06 Threads class SMR info: "Reference Handler" #9 [23043] daemon prio=10 os_prio=31 cpu=459,59ms elapsed=96,93s tid=0x000000014e80a000 nid=23043 waiting on condition [0x0000000170832000] "Finalizer" #10 [23299] daemon prio=8 os_prio=31 cpu=1,25ms elapsed=96,93s tid=0x000000014e80a800 nid=23299 in Object.wait() [0x0000000170a3e000] "Signal Dispatcher" #11 [31491] daemon prio=9 os_prio=31 cpu=0,10ms elapsed=96,93s tid=0x000000014e813000 nid=31491 waiting on condition [0x0000000000000000] "Service Thread" #12 [23811] daemon prio=9 os_prio=31 cpu=29,32ms elapsed=96,93s tid=0x000000014e813800 nid=23811 runnable [0x0000000000000000] "Monitor Deflation Thread" #13 [24067] daemon prio=9 os_prio=31 cpu=3,02ms elapsed=96,93s tid=0x000000014e814000 nid=24067 runnable [0x0000000000000000] "C2 CompilerThread0" #14 [30979] daemon prio=9 os_prio=31 cpu=25716,15ms elapsed=96,93s tid=0x000000014f80d800 nid=30979 waiting on condition [0x0000000000000000] "C1 CompilerThread0" #17 [30467] daemon prio=9 os_prio=31 cpu=2737,18ms elapsed=96,93s tid=0x0000000158024400 nid=30467 waiting on condition [0x0000000000000000] "Common-Cleaner" #18 [24579] daemon prio=8 os_prio=31 cpu=2,56ms elapsed=96,92s tid=0x0000000158016200 nid=24579 waiting on condition [0x0000000171686000] "Notification Thread" #19 [25091] daemon prio=9 os_prio=31 cpu=0,02ms elapsed=96,91s tid=0x0000000158032a00 nid=25091 runnable [0x0000000000000000] "AppKit Thread" #20 [259] daemon prio=5 os_prio=31 cpu=1072,67ms elapsed=96,87s tid=0x000000014f8b3c00 nid=259 runnable [0x0000000000000000] "AWT-Shutdown" #21 [37123] prio=5 os_prio=31 cpu=0,57ms elapsed=96,83s tid=0x000000014e912600 nid=37123 in Object.wait() [0x0000000171a9e000] "DestroyJavaVM" #23 [10499] prio=5 os_prio=31 cpu=130,73ms elapsed=96,67s tid=0x0000000158264800 nid=10499 waiting on condition [0x0000000000000000] "Log4j2-TF-3-Scheduled-1" #36 [81415] daemon prio=5 os_prio=31 cpu=0,35ms elapsed=96,44s tid=0x000000014ec6b200 nid=81415 waiting on condition [0x000000017b956000] "Java2D Queue Flusher" #40 [73479] daemon prio=10 os_prio=31 cpu=144,25ms elapsed=96,31s tid=0x000000014ec6ba00 nid=73479 in Object.wait() [0x000000017bf7a000] "Java2D Disposer" #41 [73987] daemon prio=10 os_prio=31 cpu=2,37ms elapsed=96,31s tid=0x000000014fbc9600 nid=73987 waiting on condition [0x000000017c186000] "AWT-EventQueue-0" #44 [78851] prio=6 os_prio=31 cpu=4869,42ms elapsed=95,79s tid=0x000000013080ae00 nid=78851 waiting on condition [0x00000003a68ea000] "TimerQueue" #45 [89355] daemon prio=5 os_prio=31 cpu=199,13ms elapsed=95,61s tid=0x0000000158662c00 nid=89355 waiting on condition [0x00000007ca84e000] "GhidraSwinglessTimer" #48 [92947] daemon prio=6 os_prio=31 cpu=0,05ms elapsed=93,69s tid=0x0000000130aab000 nid=92947 in Object.wait() [0x0000000372cca000] "File System Listener" #52 [126507] daemon prio=6 os_prio=31 cpu=0,04ms elapsed=93,69s tid=0x0000000159881800 nid=126507 waiting on condition [0x00000003730e2000] "SwingWorker-pool-4-thread-1" #53 [129299] daemon prio=5 os_prio=31 cpu=0,52ms elapsed=93,67s tid=0x00000001592dfa00 nid=129299 waiting on condition [0x0000000372ed6000] "FelixDispatchQueue" #56 [124683] prio=6 os_prio=31 cpu=0,09ms elapsed=91,05s tid=0x000000015922ec00 nid=124683 in Object.wait() [0x00000007c9e76000] "FelixFrameworkWiring" #62 [120615] daemon prio=6 os_prio=31 cpu=0,07ms elapsed=91,00s tid=0x0000000159176a00 nid=120615 in Object.wait() [0x00000007cb1be000] "FelixStartLevel" #63 [99591] daemon prio=6 os_prio=31 cpu=0,13ms elapsed=91,00s tid=0x00000001592bca00 nid=99591 in Object.wait() [0x00000007cb3ca000] "GTimer" #68 [95859] daemon prio=6 os_prio=31 cpu=0,35ms elapsed=90,24s tid=0x0000000130c8aa00 nid=95859 in Object.wait() [0x00000007cd71e000] "Background-Task-CodeBrowser" #86 [104219] prio=2 os_prio=31 cpu=32973,35ms elapsed=86,38s tid=0x0000000159b11e00 nid=104219 waiting on condition [0x000000036c009000] "Run Manager Worker: Decompiler-pool-6-thread-1" #87 [111735] daemon prio=5 os_prio=31 cpu=58,75ms elapsed=64,66s tid=0x0000000130a73200 nid=111735 waiting on condition [0x0000000367846000] "process reaper (pid 94408)" #88 [121635] daemon prio=10 os_prio=31 cpu=0,66ms elapsed=64,64s tid=0x000000015b1f1a00 nid=121635 runnable [0x000000017060e000] "process reaper" #113 [101435] daemon prio=10 os_prio=31 cpu=0,46ms elapsed=52,55s tid=0x000000014e93f000 nid=101435 waiting on condition [0x0000000179de2000] "process reaper" #114 [109935] daemon prio=10 os_prio=31 cpu=0,33ms elapsed=52,33s tid=0x00000003689f3a00 nid=109935 waiting on condition [0x0000000179e22000] "process reaper" #115 [97867] daemon prio=10 os_prio=31 cpu=0,42ms elapsed=52,11s tid=0x000000014eaeae00 nid=97867 waiting on condition [0x00000003686ae000] "process reaper" #116 [98359] daemon prio=10 os_prio=31 cpu=0,47ms elapsed=51,87s tid=0x00000003689f2e00 nid=98359 waiting on condition [0x00000003686ee000] "process reaper" #117 [93467] daemon prio=10 os_prio=31 cpu=0,42ms elapsed=51,63s tid=0x000000014d012800 nid=93467 waiting on condition [0x000000036872e000] "process reaper" #118 [98803] daemon prio=10 os_prio=31 cpu=0,50ms elapsed=51,39s tid=0x0000000130b3ca00 nid=98803 waiting on condition [0x000000036876e000] "process reaper" #119 [121119] daemon prio=10 os_prio=31 cpu=0,36ms elapsed=51,15s tid=0x000000015b124800 nid=121119 waiting on condition [0x00000003687ae000] "process reaper" #120 [112139] daemon prio=10 os_prio=31 cpu=0,44ms elapsed=50,91s tid=0x00000001482e9800 nid=112139 waiting on condition [0x00000003687ee000] "process reaper" #121 [100391] daemon prio=10 os_prio=31 cpu=0,36ms elapsed=50,68s tid=0x000000015a809600 nid=100391 waiting on condition [0x0000000369246000] "process reaper" #122 [102407] daemon prio=10 os_prio=31 cpu=0,48ms elapsed=50,45s tid=0x000000014d011200 nid=102407 waiting on condition [0x0000000369286000] "Analysis-pool-10-thread-11" #133 [117003] daemon prio=5 os_prio=31 cpu=5719,01ms elapsed=30,27s tid=0x000000014eae7c00 nid=117003 waiting on condition [0x00000003bd64e000] "Analysis-pool-10-thread-12" #134 [117511] daemon prio=5 os_prio=31 cpu=6858,04ms elapsed=30,27s tid=0x0000000148212a00 nid=117511 runnable [0x00000003bd859000] "Analysis-pool-10-thread-13" #135 [96815] daemon prio=5 os_prio=31 cpu=6892,49ms elapsed=30,27s tid=0x00000003bc035200 nid=96815 waiting on condition [0x00000003beede000] "Analysis-pool-10-thread-14" #136 [119595] daemon prio=5 os_prio=31 cpu=4942,82ms elapsed=30,27s tid=0x00000003bc00dc00 nid=119595 waiting on condition [0x00000003bf0ea000] "Analysis-pool-10-thread-15" #137 [98823] daemon prio=5 os_prio=31 cpu=5367,60ms elapsed=30,27s tid=0x000000014e93da00 nid=98823 waiting on condition [0x00000003bf2f6000] "Analysis-pool-10-thread-16" #138 [123767] daemon prio=5 os_prio=31 cpu=1981,42ms elapsed=30,27s tid=0x000000014eae9a00 nid=123767 waiting on condition [0x00000003bf502000] "Analysis-pool-10-thread-17" #139 [124183] daemon prio=5 os_prio=31 cpu=2013,72ms elapsed=30,27s tid=0x000000014e937800 nid=124183 waiting on condition [0x00000003bf70e000] "Analysis-pool-10-thread-18" #140 [113431] daemon prio=5 os_prio=31 cpu=2219,83ms elapsed=30,27s tid=0x000000014e938000 nid=113431 waiting on condition [0x00000003bf91a000] "Analysis-pool-10-thread-19" #141 [113159] daemon prio=5 os_prio=31 cpu=5684,74ms elapsed=30,27s tid=0x0000000148213200 nid=113159 waiting on condition [0x00000003bfb26000] "Analysis-pool-10-thread-20" #142 [120387] daemon prio=5 os_prio=31 cpu=3471,74ms elapsed=30,27s tid=0x0000000148213a00 nid=120387 runnable [0x00000003bfd32000] "Attach Listener" #143 [96543] daemon prio=9 os_prio=31 cpu=0,33ms elapsed=0,11s tid=0x000000015b237000 nid=96543 waiting on condition [0x0000000000000000] "VM Thread" os_prio=31 cpu=97,19ms elapsed=96,94s tid=0x000000014f10e2c0 nid=19971 runnable "GC Thread#0" os_prio=31 cpu=800,45ms elapsed=96,94s tid=0x000000014f106970 nid=14851 runnable "GC Thread#1" os_prio=31 cpu=796,38ms elapsed=96,60s tid=0x000000014e753a00 nid=69403 runnable "GC Thread#2" os_prio=31 cpu=804,42ms elapsed=96,60s tid=0x000000014e753f70 nid=69635 runnable "GC Thread#3" os_prio=31 cpu=792,75ms elapsed=96,60s tid=0x000000014e7544e0 nid=83715 runnable "GC Thread#4" os_prio=31 cpu=797,79ms elapsed=96,60s tid=0x000000014e754a50 nid=83459 runnable "GC Thread#5" os_prio=31 cpu=790,08ms elapsed=96,60s tid=0x000000014e7553b0 nid=70403 runnable "GC Thread#6" os_prio=31 cpu=795,07ms elapsed=96,60s tid=0x000000014e755d10 nid=70915 runnable "GC Thread#7" os_prio=31 cpu=797,90ms elapsed=96,60s tid=0x000000014e756670 nid=82691 runnable "GC Thread#8" os_prio=31 cpu=793,12ms elapsed=96,60s tid=0x000000014e756fd0 nid=82435 runnable "GC Thread#9" os_prio=31 cpu=785,79ms elapsed=96,60s tid=0x000000014e757930 nid=71427 runnable "GC Thread#10" os_prio=31 cpu=800,28ms elapsed=96,60s tid=0x000000014e758290 nid=81923 runnable "G1 Main Marker" os_prio=31 cpu=16,00ms elapsed=96,94s tid=0x000000014f107110 nid=13059 runnable "G1 Conc#0" os_prio=31 cpu=227,50ms elapsed=96,94s tid=0x000000014f107a80 nid=14083 runnable "G1 Conc#1" os_prio=31 cpu=227,09ms elapsed=96,39s tid=0x000000014f08aff0 nid=72195 runnable "G1 Conc#2" os_prio=31 cpu=225,72ms elapsed=96,39s tid=0x000000014f08b580 nid=80899 runnable "G1 Refine#0" os_prio=31 cpu=18,95ms elapsed=96,94s tid=0x000000015887f800 nid=16387 runnable "G1 Service" os_prio=31 cpu=21,33ms elapsed=96,94s tid=0x000000014f10a7e0 nid=16643 runnable "VM Periodic Task Thread" os_prio=31 cpu=18,36ms elapsed=96,94s tid=0x000000014f10bb80 nid=20739 waiting on condition JNI global refs: 221, weak refs: 608 |
openjdk 24 2025-03-18 2025-03-13 20:23:24 Threads class SMR info: "Reference Handler" #11 [30723] daemon prio=10 os_prio=31 cpu=1,87ms elapsed=26,19s tid=0x0000000159810400 nid=30723 waiting on condition [0x000000016ed4a000] "Finalizer" #12 [30211] daemon prio=8 os_prio=31 cpu=1,51ms elapsed=26,19s tid=0x0000000159812e00 nid=30211 in Object.wait() [0x000000016ef56000] "Signal Dispatcher" #13 [26115] daemon prio=9 os_prio=31 cpu=0,11ms elapsed=26,19s tid=0x0000000159863e00 nid=26115 waiting on condition [0x0000000000000000] "Service Thread" #14 [29699] daemon prio=9 os_prio=31 cpu=1,49ms elapsed=26,19s tid=0x0000000159864600 nid=29699 runnable [0x0000000000000000] "Monitor Deflation Thread" #15 [29443] daemon prio=9 os_prio=31 cpu=2,10ms elapsed=26,19s tid=0x0000000159864e00 nid=29443 runnable [0x0000000000000000] "C2 CompilerThread0" #16 [27139] daemon prio=9 os_prio=31 cpu=1601,95ms elapsed=26,19s tid=0x0000000159865600 nid=27139 waiting on condition [0x0000000000000000] "C1 CompilerThread0" #19 [28931] daemon prio=9 os_prio=31 cpu=1000,81ms elapsed=26,19s tid=0x000000015986de00 nid=28931 waiting on condition [0x0000000000000000] "Common-Cleaner" #20 [27395] daemon prio=8 os_prio=31 cpu=1,44ms elapsed=26,18s tid=0x000000015908ce00 nid=27395 in Object.wait() [0x000000016fb9e000] "Notification Thread" #21 [28163] daemon prio=9 os_prio=31 cpu=0,02ms elapsed=26,16s tid=0x00000001588ae200 nid=28163 runnable [0x0000000000000000] "AppKit Thread" #23 [259] daemon prio=5 os_prio=31 cpu=666,20ms elapsed=26,13s tid=0x00000001588af400 nid=259 runnable [0x0000000000000000] "AWT-Shutdown" #24 [64527] prio=5 os_prio=31 cpu=0,48ms elapsed=26,10s tid=0x00000001598a0400 nid=64527 in Object.wait() [0x000000016ffb6000] "DestroyJavaVM" #27 [8963] prio=5 os_prio=31 cpu=124,87ms elapsed=25,95s tid=0x0000000159f46e00 nid=8963 waiting on condition [0x0000000000000000] "Log4j2-TF-3-Scheduled-1" #30 [74247] daemon prio=5 os_prio=31 cpu=0,15ms elapsed=25,73s tid=0x0000000158d41600 nid=74247 waiting on condition [0x00000001789f6000] "Java2D Queue Flusher" #44 [128775] daemon prio=10 os_prio=31 cpu=127,16ms elapsed=25,59s tid=0x0000000158d56600 nid=128775 in Object.wait() [0x000000017a69e000] "Java2D Disposer" #45 [128003] daemon prio=10 os_prio=31 cpu=0,97ms elapsed=25,59s tid=0x000000013a908800 nid=128003 in Object.wait() [0x000000017a8aa000] "AWT-EventQueue-0" #48 [89347] prio=6 os_prio=31 cpu=1932,76ms elapsed=25,11s tid=0x000000015959fe00 nid=89347 in Object.wait() [0x0000000398250000] "TimerQueue" #49 [90403] daemon prio=5 os_prio=31 cpu=25,33ms elapsed=24,93s tid=0x000000015d02d200 nid=90403 waiting on condition [0x00000003d45e6000] "GhidraSwinglessTimer" #52 [95507] daemon prio=6 os_prio=31 cpu=0,06ms elapsed=23,08s tid=0x000000015ca14200 nid=95507 in Object.wait() [0x000000035de9a000] "File System Listener" #56 [94759] daemon prio=6 os_prio=31 cpu=0,05ms elapsed=23,08s tid=0x000000015baed600 nid=94759 waiting on condition [0x000000036464e000] "SwingWorker-pool-4-thread-1" #57 [93991] daemon prio=5 os_prio=31 cpu=0,57ms elapsed=23,06s tid=0x000000015b80ce00 nid=93991 waiting on condition [0x000000036485a000] "FelixDispatchQueue" #61 [129823] prio=6 os_prio=31 cpu=0,10ms elapsed=17,81s tid=0x000000015bb8b400 nid=129823 in Object.wait() [0x00000003d3c06000] "FelixResolver-1" #62 [96827] daemon prio=6 os_prio=31 cpu=0,09ms elapsed=17,78s tid=0x000000015b844c00 nid=96827 waiting on condition [0x00000003d3e12000] "FelixResolver-2" #63 [93507] daemon prio=6 os_prio=31 cpu=1,45ms elapsed=17,78s tid=0x000000015bcd3000 nid=93507 waiting on condition [0x00000003d401e000] "FelixResolver-3" #64 [97595] daemon prio=6 os_prio=31 cpu=0,04ms elapsed=17,78s tid=0x000000013a080a00 nid=97595 waiting on condition [0x00000003d422a000] "FelixResolver-4" #65 [122907] daemon prio=6 os_prio=31 cpu=1,77ms elapsed=17,78s tid=0x000000013a3a5400 nid=122907 waiting on condition [0x00000003d49b2000] "FelixResolver-5" #66 [99343] daemon prio=6 os_prio=31 cpu=0,19ms elapsed=17,78s tid=0x000000013b329a00 nid=99343 waiting on condition [0x00000003d4bbe000] "FelixFrameworkWiring" #67 [117923] daemon prio=6 os_prio=31 cpu=0,07ms elapsed=17,77s tid=0x000000013b32da00 nid=117923 in Object.wait() [0x00000003d4dca000] "FelixStartLevel" #68 [103435] daemon prio=6 os_prio=31 cpu=0,12ms elapsed=17,77s tid=0x000000013b32b200 nid=103435 in Object.wait() [0x00000003d511a000] "GTree Worker-pool-2-thread-2" #72 [115027] daemon prio=5 os_prio=31 cpu=0,75ms elapsed=17,22s tid=0x000000013b690a00 nid=115027 waiting on condition [0x00000003d573d000] "Threaded Table Model Update Manager: Symbols" #73 [118103] prio=6 os_prio=31 cpu=0,16ms elapsed=17,03s tid=0x00000003d7939000 nid=118103 waiting on condition [0x00000003d594a000] "GTimer" #74 [104707] daemon prio=6 os_prio=31 cpu=0,14ms elapsed=17,03s tid=0x00000003d793ec00 nid=104707 in Object.wait() [0x00000003d5b56000] "Threaded Table Model Update Manager: Bookmarks" #76 [113923] prio=6 os_prio=31 cpu=0,26ms elapsed=17,01s tid=0x000000013b6aee00 nid=113923 waiting on condition [0x00000003d5d62000] "Threaded Table Model Update Manager: Source File Table Model" #77 [113167] prio=6 os_prio=31 cpu=0,12ms elapsed=16,94s tid=0x000000013901c600 nid=113167 waiting on condition [0x000000035c5be000] "Threaded Table Model Update Manager: Transformer Table Model" #78 [114219] prio=6 os_prio=31 cpu=0,11ms elapsed=16,94s tid=0x0000000139009400 nid=114219 waiting on condition [0x00000003d5f6e000] "Threaded Table Model Update Manager: Functions" #79 [106755] prio=6 os_prio=31 cpu=0,07ms elapsed=16,94s tid=0x0000000139020600 nid=106755 waiting on condition [0x00000003e0426000] "Threaded Table Model Update Manager: Function Tags" #80 [110851] prio=6 os_prio=31 cpu=0,10ms elapsed=16,93s tid=0x0000000159810c00 nid=110851 waiting on condition [0x00000003e0632000] "Threaded Table Model Update Manager: Function Tags" #81 [107267] prio=6 os_prio=31 cpu=0,07ms elapsed=16,93s tid=0x000000015c1d9200 nid=107267 waiting on condition [0x00000003e7dfa000] "Threaded Table Model Update Manager: Function Tags Applied Functions" #82 [110595] prio=6 os_prio=31 cpu=0,07ms elapsed=16,93s tid=0x00000001598b3c00 nid=110595 waiting on condition [0x00000003ffb3e000] "Threaded Table Model Update Manager: Comment Window" #83 [108035] prio=6 os_prio=31 cpu=0,05ms elapsed=16,93s tid=0x000000015c295e00 nid=108035 waiting on condition [0x00000003ffd4a000] "Threaded Table Model Update Manager: Data" #84 [108547] prio=6 os_prio=31 cpu=0,06ms elapsed=16,93s tid=0x000000013901b600 nid=108547 waiting on condition [0x00000003fff56000] "Threaded Table Model Update Manager: Symbol References" #85 [108803] prio=6 os_prio=31 cpu=0,05ms elapsed=16,93s tid=0x000000013901a600 nid=108803 waiting on condition [0x0000000806c32000] "Threaded Table Model Update Manager: Relocation Table Model" #86 [109315] prio=6 os_prio=31 cpu=0,05ms elapsed=16,93s tid=0x000000013900b400 nid=109315 waiting on condition [0x0000000806e3e000] "Threaded Table Model Update Manager: Defined String Table" #87 [109827] prio=6 os_prio=31 cpu=0,13ms elapsed=16,93s tid=0x00000001598b6c00 nid=109827 waiting on condition [0x000000080704a000] "Attach Listener" #88 [102191] daemon prio=9 os_prio=31 cpu=0,33ms elapsed=0,10s tid=0x000000013916e600 nid=102191 waiting on condition [0x0000000000000000] "G1 Conc#2" os_prio=31 cpu=13,45ms elapsed=25,68s tid=0x00000001587963c0 nid=130051 runnable "G1 Conc#1" os_prio=31 cpu=15,43ms elapsed=25,68s tid=0x0000000158795e40 nid=130563 runnable "GC Thread#10" os_prio=31 cpu=23,47ms elapsed=25,71s tid=0x000000015a057620 nid=87811 runnable "GC Thread#9" os_prio=31 cpu=21,72ms elapsed=25,71s tid=0x000000015a0570a0 nid=87299 runnable "GC Thread#8" os_prio=31 cpu=15,16ms elapsed=25,71s tid=0x000000015a056b20 nid=76547 runnable "GC Thread#7" os_prio=31 cpu=18,05ms elapsed=25,71s tid=0x000000015a0565a0 nid=76803 runnable "GC Thread#6" os_prio=31 cpu=15,34ms elapsed=25,71s tid=0x000000015a056020 nid=77059 runnable "GC Thread#5" os_prio=31 cpu=20,31ms elapsed=25,71s tid=0x000000015a055aa0 nid=77315 runnable "GC Thread#4" os_prio=31 cpu=18,48ms elapsed=25,71s tid=0x000000015a055520 nid=75267 runnable "GC Thread#3" os_prio=31 cpu=18,89ms elapsed=25,71s tid=0x000000015a054fa0 nid=78083 runnable "GC Thread#2" os_prio=31 cpu=13,95ms elapsed=25,71s tid=0x000000015a054a20 nid=74755 runnable "GC Thread#1" os_prio=31 cpu=22,40ms elapsed=25,71s tid=0x000000015a0544a0 nid=78339 runnable "VM Thread" os_prio=31 cpu=8,64ms elapsed=26,20s tid=0x000000015a008a70 nid=20227 runnable "VM Periodic Task Thread" os_prio=31 cpu=11,54ms elapsed=26,20s tid=0x000000015a005c70 nid=17923 waiting on condition "G1 Service" os_prio=31 cpu=1,40ms elapsed=26,20s tid=0x000000015870d1f0 nid=17411 runnable "G1 Refine#0" os_prio=31 cpu=14,18ms elapsed=26,20s tid=0x0000000159089600 nid=16899 runnable "G1 Conc#0" os_prio=31 cpu=15,25ms elapsed=26,20s tid=0x000000015870a480 nid=16387 runnable "G1 Main Marker" os_prio=31 cpu=0,42ms elapsed=26,20s tid=0x0000000158709b00 nid=13571 runnable "GC Thread#0" os_prio=31 cpu=18,65ms elapsed=26,20s tid=0x0000000158709350 nid=13827 runnable JNI global refs: 137, weak refs: 257 |
openjdk 21.0.6 2025-01-21 LTS Full thread dump OpenJDK 64-Bit Server VM (21.0.6+7-LTS mixed mode): Threads class SMR info: "Reference Handler" #9 [28931] daemon prio=10 os_prio=31 cpu=1,53ms elapsed=37,45s tid=0x000000014b03b600 nid=28931 waiting on condition [0x000000017083e000] "Finalizer" #10 [28419] daemon prio=8 os_prio=31 cpu=1,02ms elapsed=37,45s tid=0x000000014b03be00 nid=28419 in Object.wait() [0x0000000170a4a000] "Signal Dispatcher" #11 [28163] daemon prio=9 os_prio=31 cpu=0,09ms elapsed=37,45s tid=0x000000014c075200 nid=28163 waiting on condition [0x0000000000000000] "Service Thread" #12 [27907] daemon prio=9 os_prio=31 cpu=1,98ms elapsed=37,45s tid=0x000000014c077c00 nid=27907 runnable [0x0000000000000000] "Monitor Deflation Thread" #13 [24323] daemon prio=9 os_prio=31 cpu=3,62ms elapsed=37,45s tid=0x000000014c078400 nid=24323 runnable [0x0000000000000000] "C2 CompilerThread0" #14 [24835] daemon prio=9 os_prio=31 cpu=1784,99ms elapsed=37,45s tid=0x000000014c081c00 nid=24835 waiting on condition [0x0000000000000000] "C1 CompilerThread0" #17 [27395] daemon prio=9 os_prio=31 cpu=883,72ms elapsed=37,45s tid=0x000000014c08a400 nid=27395 waiting on condition [0x0000000000000000] "Common-Cleaner" #18 [25347] daemon prio=8 os_prio=31 cpu=1,57ms elapsed=37,44s tid=0x000000014c0bac00 nid=25347 waiting on condition [0x0000000171692000] "Notification Thread" #19 [26883] daemon prio=9 os_prio=31 cpu=0,02ms elapsed=37,42s tid=0x000000014b956200 nid=26883 runnable [0x0000000000000000] "AppKit Thread" #20 [259] daemon prio=5 os_prio=31 cpu=474,79ms elapsed=37,37s tid=0x000000014c105e00 nid=259 runnable [0x0000000000000000] "AWT-Shutdown" #21 [44303] prio=5 os_prio=31 cpu=0,53ms elapsed=37,34s tid=0x000000014ba1e400 nid=44303 in Object.wait() [0x0000000171b36000] "DestroyJavaVM" #23 [9731] prio=5 os_prio=31 cpu=132,84ms elapsed=37,18s tid=0x000000014b80a400 nid=9731 waiting on condition [0x0000000000000000] "Log4j2-TF-3-Scheduled-1" #36 [76807] daemon prio=5 os_prio=31 cpu=0,68ms elapsed=36,94s tid=0x000000014c4d5a00 nid=76807 waiting on condition [0x000000017365e000] "Java2D Queue Flusher" #40 [129035] daemon prio=10 os_prio=31 cpu=117,20ms elapsed=36,76s tid=0x000000016200ba00 nid=129035 in Object.wait() [0x0000000173e8e000] "Java2D Disposer" #41 [88579] daemon prio=10 os_prio=31 cpu=1,07ms elapsed=36,76s tid=0x0000000162061e00 nid=88579 waiting on condition [0x000000017409a000] "AWT-EventQueue-0" #44 [89603] prio=6 os_prio=31 cpu=1906,58ms elapsed=35,94s tid=0x000000016100b400 nid=89603 in Object.wait() [0x00000003ae904000] "TimerQueue" #45 [91663] daemon prio=5 os_prio=31 cpu=31,71ms elapsed=35,84s tid=0x0000000161110c00 nid=91663 waiting on condition [0x00000007d2dbe000] "GhidraSwinglessTimer" #48 [90375] daemon prio=6 os_prio=31 cpu=0,08ms elapsed=34,57s tid=0x0000000163a68c00 nid=90375 in Object.wait() [0x0000000374096000] "File System Listener" #52 [125723] daemon prio=6 os_prio=31 cpu=0,04ms elapsed=34,56s tid=0x0000000163a3da00 nid=125723 waiting on condition [0x00000003744ae000] "SwingWorker-pool-4-thread-1" #53 [125455] daemon prio=5 os_prio=31 cpu=0,49ms elapsed=34,55s tid=0x0000000161ee5c00 nid=125455 waiting on condition [0x00000003742a2000] "FelixDispatchQueue" #56 [103227] prio=6 os_prio=31 cpu=0,09ms elapsed=31,80s tid=0x0000000162a77800 nid=103227 in Object.wait() [0x00000007d32c2000] "FelixResolver-1" #57 [99407] daemon prio=6 os_prio=31 cpu=0,07ms elapsed=31,76s tid=0x000000016200f400 nid=99407 waiting on condition [0x00000007d34ce000] "FelixResolver-2" #58 [105475] daemon prio=6 os_prio=31 cpu=1,24ms elapsed=31,76s tid=0x00000001624afe00 nid=105475 waiting on condition [0x00000007d36da000] "FelixResolver-3" #59 [105987] daemon prio=6 os_prio=31 cpu=0,03ms elapsed=31,76s tid=0x00000001624a3a00 nid=105987 waiting on condition [0x00000007d3c66000] "FelixResolver-4" #60 [115203] daemon prio=6 os_prio=31 cpu=1,66ms elapsed=31,76s tid=0x0000000162398600 nid=115203 waiting on condition [0x00000007d3e72000] "FelixResolver-5" #61 [114691] daemon prio=6 os_prio=31 cpu=0,21ms elapsed=31,76s tid=0x0000000161ef1c00 nid=114691 waiting on condition [0x00000007d407e000] "FelixFrameworkWiring" #62 [105227] daemon prio=6 os_prio=31 cpu=0,08ms elapsed=31,75s tid=0x0000000162a78000 nid=105227 in Object.wait() [0x00000007d5076000] "FelixStartLevel" #63 [90131] daemon prio=6 os_prio=31 cpu=0,16ms elapsed=31,74s tid=0x0000000162921c00 nid=90131 in Object.wait() [0x00000007d5282000] "GTree Worker-pool-2-thread-2" #66 [126559] daemon prio=5 os_prio=31 cpu=0,60ms elapsed=31,16s tid=0x00000001624a2400 nid=126559 waiting on condition [0x00000007d5699000] "Threaded Table Model Update Manager: Symbols" #67 [113951] prio=6 os_prio=31 cpu=0,14ms elapsed=30,97s tid=0x000000014c4d5200 nid=113951 waiting on condition [0x00000007da206000] "GTimer" #68 [107055] daemon prio=6 os_prio=31 cpu=0,12ms elapsed=30,96s tid=0x000000014c277600 nid=107055 in Object.wait() [0x00000007da412000] "Threaded Table Model Update Manager: Bookmarks" #70 [114267] prio=6 os_prio=31 cpu=0,21ms elapsed=30,94s tid=0x000000014b0d3000 nid=114267 waiting on condition [0x00000007da61e000] "Threaded Table Model Update Manager: Source File Table Model" #71 [108563] prio=6 os_prio=31 cpu=0,11ms elapsed=30,88s tid=0x00000001624a4200 nid=108563 waiting on condition [0x0000000372756000] "Threaded Table Model Update Manager: Transformer Table Model" #72 [111391] prio=6 os_prio=31 cpu=0,08ms elapsed=30,88s tid=0x000000014c311e00 nid=111391 waiting on condition [0x0000000372962000] "Threaded Table Model Update Manager: Functions" #73 [111107] prio=6 os_prio=31 cpu=0,07ms elapsed=30,88s tid=0x000000014c7ff600 nid=111107 waiting on condition [0x0000000372b6e000] "Threaded Table Model Update Manager: Function Tags" #74 [110611] prio=6 os_prio=31 cpu=0,05ms elapsed=30,88s tid=0x000000014c27c000 nid=110611 waiting on condition [0x00000007eb9a2000] "Threaded Table Model Update Manager: Function Tags" #75 [110339] prio=6 os_prio=31 cpu=0,07ms elapsed=30,88s tid=0x000000014a08ae00 nid=110339 waiting on condition [0x00000007ebbae000] "Threaded Table Model Update Manager: Function Tags Applied Functions" #76 [174343] prio=6 os_prio=31 cpu=0,05ms elapsed=30,88s tid=0x000000014c25fa00 nid=174343 waiting on condition [0x00000007ebdba000] "Threaded Table Model Update Manager: Comment Window" #77 [173827] prio=6 os_prio=31 cpu=0,06ms elapsed=30,88s tid=0x000000014c7f9c00 nid=173827 waiting on condition [0x00000007ebfc6000] "Threaded Table Model Update Manager: Data" #78 [173571] prio=6 os_prio=31 cpu=0,05ms elapsed=30,88s tid=0x000000014c270e00 nid=173571 waiting on condition [0x00000007ec1d2000] "Threaded Table Model Update Manager: Symbol References" #79 [173315] prio=6 os_prio=31 cpu=0,05ms elapsed=30,88s tid=0x000000014c271600 nid=173315 waiting on condition [0x00000007ec3de000] "Threaded Table Model Update Manager: Relocation Table Model" #80 [108819] prio=6 os_prio=31 cpu=0,05ms elapsed=30,88s tid=0x000000014b0d7000 nid=108819 waiting on condition [0x00000007ec5ea000] "Threaded Table Model Update Manager: Defined String Table" #81 [131843] prio=6 os_prio=31 cpu=0,05ms elapsed=30,88s tid=0x000000014b164000 nid=131843 waiting on condition [0x00000007ec7f6000] "Attach Listener" #82 [116243] daemon prio=9 os_prio=31 cpu=0,34ms elapsed=0,11s tid=0x000000014b0f8400 nid=116243 waiting on condition [0x0000000000000000] "G1 Conc#2" os_prio=31 cpu=8,84ms elapsed=36,86s tid=0x000000014aa05fa0 nid=130563 runnable "G1 Conc#1" os_prio=31 cpu=11,26ms elapsed=36,86s tid=0x000000014ac08050 nid=130819 runnable "GC Thread#10" os_prio=31 cpu=16,06ms elapsed=37,12s tid=0x000000014a86f2b0 nid=80899 runnable "GC Thread#9" os_prio=31 cpu=13,07ms elapsed=37,12s tid=0x000000014a86e950 nid=81155 runnable "GC Thread#8" os_prio=31 cpu=19,90ms elapsed=37,12s tid=0x000000014a86dff0 nid=73475 runnable "GC Thread#7" os_prio=31 cpu=19,68ms elapsed=37,12s tid=0x000000014a86d690 nid=81923 runnable "GC Thread#6" os_prio=31 cpu=16,99ms elapsed=37,12s tid=0x0000000149f51c90 nid=73219 runnable "GC Thread#5" os_prio=31 cpu=16,32ms elapsed=37,12s tid=0x0000000149f51330 nid=72707 runnable "GC Thread#4" os_prio=31 cpu=12,75ms elapsed=37,12s tid=0x0000000149f50dc0 nid=82435 runnable "GC Thread#3" os_prio=31 cpu=19,84ms elapsed=37,12s tid=0x0000000149f50850 nid=71939 runnable "GC Thread#2" os_prio=31 cpu=15,27ms elapsed=37,12s tid=0x0000000149f502e0 nid=71683 runnable "GC Thread#1" os_prio=31 cpu=12,43ms elapsed=37,12s tid=0x0000000149f4fd70 nid=85783 runnable "VM Thread" os_prio=31 cpu=10,61ms elapsed=37,46s tid=0x000000014a806640 nid=19203 runnable "VM Periodic Task Thread" os_prio=31 cpu=18,82ms elapsed=37,48s tid=0x000000014a9082a0 nid=16899 waiting on condition "G1 Service" os_prio=31 cpu=1,43ms elapsed=37,48s tid=0x000000014a906f00 nid=21251 runnable "G1 Refine#0" os_prio=31 cpu=18,55ms elapsed=37,48s tid=0x000000014c060c00 nid=16387 runnable "G1 Conc#0" os_prio=31 cpu=13,72ms elapsed=37,48s tid=0x000000014a9041a0 nid=14083 runnable "G1 Main Marker" os_prio=31 cpu=0,30ms elapsed=37,48s tid=0x0000000149f087a0 nid=13059 runnable "GC Thread#0" os_prio=31 cpu=15,11ms elapsed=37,48s tid=0x0000000149f08000 nid=14851 runnable JNI global refs: 137, weak refs: 254 |
@adrmnv And you confirm that the issue was not present in 11.2.1 but it is in 11.3? |
version 11.2 is currently freezing |
Describe the bug
Across both Ghidra 11.3.1 and the latest Master, I am experiencing lots of GUI issues where programs don't load, or run for analysis.
To Reproduce
For Ghidra 11.3.1: Binaries when I load them don't show up in the code browser until I load them twice.
Specifically I have to double click this 2 open 2 code browsers and 1 of them will populate.
For Ghidra 11.4 Dev Branch:
Whenever I try to load a binary the code browser opens but then the entire menu becomes unresponsive. I am unable to click on anything in symbol tree, the listing view and no progress of analysis is made.
Expected behavior
I expect the GUI's to not lock up and for the code browser to be responsive.
Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: