Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e9231edd3f | |||
| 5b95a565e8 |
@@ -0,0 +1,217 @@
|
||||
<!-- Generated by SpecStory -->
|
||||
|
||||
# Update worker batches to official jar (2025-09-16 00:06Z)
|
||||
|
||||
_**User (2025-09-16 00:04Z)**_
|
||||
|
||||
change all worker batches to use the official jar and not the temp build I was using, and remove the experimental -shadow-dir tag.
|
||||
|
||||
---
|
||||
|
||||
_**Assistant**_
|
||||
|
||||
I'll help you update all the worker batch files to use the official jar and remove the experimental `-shadow-dir` tag. Let me first examine the current worker batch files to understand their structure.
|
||||
|
||||
|
||||
---
|
||||
|
||||
Read file: undefined
|
||||
|
||||
---
|
||||
|
||||
Read file: undefined
|
||||
|
||||
---
|
||||
|
||||
Read file: undefined
|
||||
|
||||
---
|
||||
|
||||
Now I can see the current structure of all three worker batch files. They're all using `sheepit-client-all.jar` (which appears to be the official jar) and have the `-shadow-dir` parameter that needs to be removed. Let me update all three files to remove the `-shadow-dir` parameter.
|
||||
|
||||
|
||||
---
|
||||
|
||||
## Todo List
|
||||
|
||||
- [-] Remove -shadow-dir parameter from worker0.bat
|
||||
- [ ] Remove -shadow-dir parameter from worker1.bat
|
||||
- [ ] Remove -shadow-dir parameter from worker2.bat
|
||||
|
||||
---
|
||||
|
||||
<details><summary>Edit file: worker0.bat</summary>
|
||||
|
||||
undefined
|
||||
|
||||
**Chunk 1**
|
||||
Lines added: 1, lines removed: 1
|
||||
|
||||
```diff
|
||||
@@ -1,1 +1,1 @@
|
||||
- java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "E:\SheepIt\cache0" -shadow-dir "E:\SheepIt\shadow"
|
||||
+ java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "E:\SheepIt\cache0"
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
---
|
||||
|
||||
<details><summary>Edit file: worker1.bat</summary>
|
||||
|
||||
undefined
|
||||
|
||||
**Chunk 1**
|
||||
Lines added: 1, lines removed: 1
|
||||
|
||||
```diff
|
||||
@@ -1,1 +1,1 @@
|
||||
- java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "E:\SheepIt\cache1" -shadow-dir "E:\SheepIt\shadow"
|
||||
+ java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "E:\SheepIt\cache1"
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
---
|
||||
|
||||
<details><summary>Edit file: worker2.bat</summary>
|
||||
|
||||
undefined
|
||||
|
||||
**Chunk 1**
|
||||
Lines added: 1, lines removed: 1
|
||||
|
||||
```diff
|
||||
@@ -1,1 +1,1 @@
|
||||
- java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "E:\SheepIt\cache2" -shadow-dir "E:\SheepIt\shadow"
|
||||
+ java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "E:\SheepIt\cache2"
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
---
|
||||
|
||||
## Todo List
|
||||
|
||||
- [x] Remove -shadow-dir parameter from worker0.bat
|
||||
- [x] Remove -shadow-dir parameter from worker1.bat
|
||||
- [x] Remove -shadow-dir parameter from worker2.bat
|
||||
|
||||
---
|
||||
|
||||
Perfect! I've successfully updated all three worker batch files (`worker0.bat`, `worker1.bat`, and `worker2.bat`) to remove the experimental `-shadow-dir` parameter.
|
||||
|
||||
The files were already using the official `sheepit-client-all.jar`, so no changes were needed for that part. Each worker batch file now has a cleaner command line without the experimental shadow directory parameter:
|
||||
|
||||
- **worker0.bat**: Uses OPTIX_0 GPU with cache directory `E:\SheepIt\cache0`
|
||||
- **worker1.bat**: Uses OPTIX_1 GPU with cache directory `E:\SheepIt\cache1`
|
||||
- **worker2.bat**: Uses OPTIX_2 GPU with cache directory `E:\SheepIt\cache2`
|
||||
|
||||
All files are now using the standard SheepIt client configuration without any experimental parameters.
|
||||
|
||||
---
|
||||
|
||||
_**User (2025-09-16 00:04Z)**_
|
||||
|
||||
good, but you didn't change the jar. check main dir.
|
||||
|
||||
---
|
||||
|
||||
_**Assistant**_
|
||||
|
||||
You're absolutely right! Let me check the main directory to see what jar files are available and identify the official one.
|
||||
|
||||
|
||||
---
|
||||
|
||||
<details>
|
||||
<summary>Listed directory undefined • **0** results</summary>
|
||||
|
||||
No results found
|
||||
</details>
|
||||
|
||||
---
|
||||
|
||||
I see! There's `sheepit-autoupdate.jar` in the main directory, which appears to be the official jar file. The worker batch files are currently using `sheepit-client-all.jar` which must be the temp build you mentioned. Let me update all three worker files to use the official `sheepit-autoupdate.jar`.
|
||||
|
||||
|
||||
---
|
||||
|
||||
## Todo List
|
||||
|
||||
- [-] Update worker0.bat to use sheepit-autoupdate.jar
|
||||
- [ ] Update worker1.bat to use sheepit-autoupdate.jar
|
||||
- [ ] Update worker2.bat to use sheepit-autoupdate.jar
|
||||
|
||||
---
|
||||
|
||||
<details><summary>Edit file: worker0.bat</summary>
|
||||
|
||||
undefined
|
||||
|
||||
**Chunk 1**
|
||||
Lines added: 1, lines removed: 1
|
||||
|
||||
```diff
|
||||
@@ -1,1 +1,1 @@
|
||||
- java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "E:\SheepIt\cache0"
|
||||
+ java -jar sheepit-autoupdate.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "E:\SheepIt\cache0"
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
---
|
||||
|
||||
<details><summary>Edit file: worker1.bat</summary>
|
||||
|
||||
undefined
|
||||
|
||||
**Chunk 1**
|
||||
Lines added: 1, lines removed: 1
|
||||
|
||||
```diff
|
||||
@@ -1,1 +1,1 @@
|
||||
- java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "E:\SheepIt\cache1"
|
||||
+ java -jar sheepit-autoupdate.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "E:\SheepIt\cache1"
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
---
|
||||
|
||||
<details><summary>Edit file: worker2.bat</summary>
|
||||
|
||||
undefined
|
||||
|
||||
**Chunk 1**
|
||||
Lines added: 1, lines removed: 1
|
||||
|
||||
```diff
|
||||
@@ -1,1 +1,1 @@
|
||||
- java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "E:\SheepIt\cache2"
|
||||
+ java -jar sheepit-autoupdate.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "E:\SheepIt\cache2"
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
---
|
||||
|
||||
## Todo List
|
||||
|
||||
- [x] Update worker0.bat to use sheepit-autoupdate.jar
|
||||
- [x] Update worker1.bat to use sheepit-autoupdate.jar
|
||||
- [x] Update worker2.bat to use sheepit-autoupdate.jar
|
||||
|
||||
---
|
||||
|
||||
Perfect! Now I've updated all three worker batch files to use the official `sheepit-autoupdate.jar` instead of the temp build `sheepit-client-all.jar`.
|
||||
|
||||
All worker files now:
|
||||
- Use the official `sheepit-autoupdate.jar`
|
||||
- Have the experimental `-shadow-dir` parameter removed
|
||||
- Maintain their respective GPU assignments (OPTIX_0, OPTIX_1, OPTIX_2) and cache directories
|
||||
|
||||
The changes are complete!
|
||||
|
||||
---
|
||||
|
||||
807
hs_err_pid18556.log
Normal file
807
hs_err_pid18556.log
Normal file
@@ -0,0 +1,807 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (mmap) failed to map 50331648 bytes for G1 virtual space
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 32GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (os_windows.cpp:3603), pid=18556, tid=32608
|
||||
#
|
||||
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
|
||||
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir S:\SheepIt\cache1
|
||||
|
||||
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 47G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
|
||||
Time: Wed Aug 27 15:10:52 2025 Mountain Daylight Time elapsed time: 62926.696021 seconds (0d 17h 28m 46s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x00000295533a58f0): VMThread "VM Thread" [id=32608, stack(0x000000c33ed00000,0x000000c33ee00000) (1024K)]
|
||||
|
||||
Stack: [0x000000c33ed00000,0x000000c33ee00000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x6cae19]
|
||||
V [jvm.dll+0x855741]
|
||||
V [jvm.dll+0x857c6e]
|
||||
V [jvm.dll+0x858343]
|
||||
V [jvm.dll+0x27e0b6]
|
||||
V [jvm.dll+0x6c7595]
|
||||
V [jvm.dll+0x6bc0fa]
|
||||
V [jvm.dll+0x353eaa]
|
||||
V [jvm.dll+0x35bb26]
|
||||
V [jvm.dll+0x3ae52e]
|
||||
V [jvm.dll+0x3ae7d8]
|
||||
V [jvm.dll+0x3281bc]
|
||||
V [jvm.dll+0x328247]
|
||||
V [jvm.dll+0x36cbcc]
|
||||
V [jvm.dll+0x36b41e]
|
||||
V [jvm.dll+0x327981]
|
||||
V [jvm.dll+0x36ab3a]
|
||||
V [jvm.dll+0x85e110]
|
||||
V [jvm.dll+0x85f494]
|
||||
V [jvm.dll+0x85f9d0]
|
||||
V [jvm.dll+0x85fc73]
|
||||
V [jvm.dll+0x7ffa1b]
|
||||
V [jvm.dll+0x6c94fd]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1259d]
|
||||
C [ntdll.dll+0x5af78]
|
||||
|
||||
VM_Operation (0x000000c33fdfe760): G1CollectForAllocation, mode: safepoint, requested by thread 0x00000295a9d1bee0
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x0000029554b34450, length=26, elements={
|
||||
0x00000295533bc750, 0x00000295533bd810, 0x00000295543b1090, 0x00000295543b1cf0,
|
||||
0x00000295543b4c80, 0x00000295543be820, 0x00000295543e7330, 0x00000295543e8f00,
|
||||
0x0000029554572630, 0x0000029554576cb0, 0x0000029554646640, 0x000002959a27b350,
|
||||
0x0000029554f8bf30, 0x000002955497dbe0, 0x00000295a9d8c5e0, 0x000002959af8b330,
|
||||
0x000002959aba7ab0, 0x000002959aba87d0, 0x000002959aba8e60, 0x000002959aba8140,
|
||||
0x00000295a9a359f0, 0x00000295aa3bbab0, 0x00000295aa3c0970, 0x00000295aa3bf5c0,
|
||||
0x00000295aa3bef30, 0x00000295a9d1bee0
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
0x00000295533bc750 JavaThread "Reference Handler" daemon [_thread_blocked, id=16240, stack(0x000000c33ee00000,0x000000c33ef00000) (1024K)]
|
||||
0x00000295533bd810 JavaThread "Finalizer" daemon [_thread_blocked, id=15612, stack(0x000000c33ef00000,0x000000c33f000000) (1024K)]
|
||||
0x00000295543b1090 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=14536, stack(0x000000c33f000000,0x000000c33f100000) (1024K)]
|
||||
0x00000295543b1cf0 JavaThread "Attach Listener" daemon [_thread_blocked, id=2404, stack(0x000000c33f100000,0x000000c33f200000) (1024K)]
|
||||
0x00000295543b4c80 JavaThread "Service Thread" daemon [_thread_blocked, id=12768, stack(0x000000c33f200000,0x000000c33f300000) (1024K)]
|
||||
0x00000295543be820 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=10468, stack(0x000000c33f300000,0x000000c33f400000) (1024K)]
|
||||
0x00000295543e7330 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=4132, stack(0x000000c33f400000,0x000000c33f500000) (1024K)]
|
||||
0x00000295543e8f00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=14356, stack(0x000000c33f500000,0x000000c33f600000) (1024K)]
|
||||
0x0000029554572630 JavaThread "Notification Thread" daemon [_thread_blocked, id=21016, stack(0x000000c33f800000,0x000000c33f900000) (1024K)]
|
||||
0x0000029554576cb0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=21004, stack(0x000000c33f900000,0x000000c33fa00000) (1024K)]
|
||||
0x0000029554646640 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=1772, stack(0x000000c33fb00000,0x000000c33fc00000) (1024K)]
|
||||
0x000002959a27b350 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=12520, stack(0x000000c33e500000,0x000000c33e600000) (1024K)]
|
||||
0x0000029554f8bf30 JavaThread "AWT-Windows" daemon [_thread_blocked, id=30544, stack(0x000000c33fc00000,0x000000c33fd00000) (1024K)]
|
||||
0x000002955497dbe0 JavaThread "Timer-0" [_thread_blocked, id=23744, stack(0x000000c341200000,0x000000c341300000) (1024K)]
|
||||
0x00000295a9d8c5e0 JavaThread "TimerQueue" daemon [_thread_blocked, id=30712, stack(0x000000c341700000,0x000000c341800000) (1024K)]
|
||||
0x000002959af8b330 JavaThread "Swing-Shell" daemon [_thread_blocked, id=30348, stack(0x000000c341800000,0x000000c341900000) (1024K)]
|
||||
0x000002959aba7ab0 JavaThread "AWT-Shutdown" [_thread_blocked, id=22916, stack(0x000000c341300000,0x000000c341400000) (1024K)]
|
||||
0x000002959aba87d0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=24124, stack(0x000000c341500000,0x000000c341600000) (1024K)]
|
||||
0x000002959aba8e60 JavaThread "Thread-3" [_thread_in_native, id=29312, stack(0x000000c341c00000,0x000000c341d00000) (1024K)]
|
||||
0x000002959aba8140 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=22280, stack(0x000000c341f00000,0x000000c342000000) (1024K)]
|
||||
0x00000295a9a359f0 JavaThread "DestroyJavaVM" [_thread_blocked, id=15496, stack(0x000000c33e600000,0x000000c33e700000) (1024K)]
|
||||
0x00000295aa3bbab0 JavaThread "Thread-1" [_thread_blocked, id=22980, stack(0x000000c342000000,0x000000c342100000) (1024K)]
|
||||
0x00000295aa3c0970 JavaThread "Thread-4" [_thread_blocked, id=22896, stack(0x000000c342300000,0x000000c342400000) (1024K)]
|
||||
0x00000295aa3bf5c0 JavaThread "Timer-1" [_thread_blocked, id=18652, stack(0x000000c343100000,0x000000c343200000) (1024K)]
|
||||
0x00000295aa3bef30 JavaThread "pool-4-thread-1" [_thread_blocked, id=31624, stack(0x000000c341100000,0x000000c341200000) (1024K)]
|
||||
0x00000295a9d1bee0 JavaThread "Timer-378" [_thread_blocked, id=17296, stack(0x000000c33fd00000,0x000000c33fe00000) (1024K)]
|
||||
Total: 26
|
||||
|
||||
Other Threads:
|
||||
=>0x00000295533a58f0 VMThread "VM Thread" [id=32608, stack(0x000000c33ed00000,0x000000c33ee00000) (1024K)]
|
||||
0x0000029553393260 WatcherThread "VM Periodic Task Thread" [id=12016, stack(0x000000c33ec00000,0x000000c33ed00000) (1024K)]
|
||||
0x0000029529a38e80 WorkerThread "GC Thread#0" [id=18024, stack(0x000000c33e700000,0x000000c33e800000) (1024K)]
|
||||
0x000002959a386c30 WorkerThread "GC Thread#1" [id=5188, stack(0x000000c33ff00000,0x000000c340000000) (1024K)]
|
||||
0x000002959a5da820 WorkerThread "GC Thread#2" [id=3868, stack(0x000000c340000000,0x000000c340100000) (1024K)]
|
||||
0x0000029554ae0f30 WorkerThread "GC Thread#3" [id=6352, stack(0x000000c340100000,0x000000c340200000) (1024K)]
|
||||
0x0000029554d4da80 WorkerThread "GC Thread#4" [id=404, stack(0x000000c340200000,0x000000c340300000) (1024K)]
|
||||
0x000002959a050080 WorkerThread "GC Thread#5" [id=9092, stack(0x000000c340300000,0x000000c340400000) (1024K)]
|
||||
0x000002959a050420 WorkerThread "GC Thread#6" [id=14880, stack(0x000000c340400000,0x000000c340500000) (1024K)]
|
||||
0x0000029554c925b0 WorkerThread "GC Thread#7" [id=18336, stack(0x000000c340500000,0x000000c340600000) (1024K)]
|
||||
0x0000029554c92950 WorkerThread "GC Thread#8" [id=9660, stack(0x000000c340600000,0x000000c340700000) (1024K)]
|
||||
0x0000029554b09250 WorkerThread "GC Thread#9" [id=9976, stack(0x000000c340700000,0x000000c340800000) (1024K)]
|
||||
0x0000029554b09a00 WorkerThread "GC Thread#10" [id=11816, stack(0x000000c340800000,0x000000c340900000) (1024K)]
|
||||
0x0000029554dba2a0 WorkerThread "GC Thread#11" [id=23780, stack(0x000000c340900000,0x000000c340a00000) (1024K)]
|
||||
0x0000029554dbad80 WorkerThread "GC Thread#12" [id=14996, stack(0x000000c340a00000,0x000000c340b00000) (1024K)]
|
||||
0x0000029554dba9e0 WorkerThread "GC Thread#13" [id=15284, stack(0x000000c340b00000,0x000000c340c00000) (1024K)]
|
||||
0x0000029554dbb860 WorkerThread "GC Thread#14" [id=9920, stack(0x000000c340c00000,0x000000c340d00000) (1024K)]
|
||||
0x0000029529a3cdf0 ConcurrentGCThread "G1 Main Marker" [id=14952, stack(0x000000c33e800000,0x000000c33e900000) (1024K)]
|
||||
0x0000029529a3e090 WorkerThread "G1 Conc#0" [id=2552, stack(0x000000c33e900000,0x000000c33ea00000) (1024K)]
|
||||
0x0000029554dc8190 WorkerThread "G1 Conc#1" [id=26220, stack(0x000000c341000000,0x000000c341100000) (1024K)]
|
||||
0x0000029554dc6490 WorkerThread "G1 Conc#2" [id=23300, stack(0x000000c341400000,0x000000c341500000) (1024K)]
|
||||
0x0000029554dc7310 WorkerThread "G1 Conc#3" [id=25788, stack(0x000000c341b00000,0x000000c341c00000) (1024K)]
|
||||
0x0000029553265430 ConcurrentGCThread "G1 Refine#0" [id=18092, stack(0x000000c33ea00000,0x000000c33eb00000) (1024K)]
|
||||
0x0000029553265fa0 ConcurrentGCThread "G1 Service" [id=24872, stack(0x000000c33eb00000,0x000000c33ec00000) (1024K)]
|
||||
Total: 24
|
||||
|
||||
Threads with active compile tasks:
|
||||
Total: 0
|
||||
|
||||
VM state: at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||
[0x00007ffcbf5bde50] Threads_lock - owner thread: 0x00000295533a58f0
|
||||
[0x00007ffcbf5bdf50] Heap_lock - owner thread: 0x00000295a9d1bee0
|
||||
|
||||
Heap address: 0x0000000501000000, size: 12272 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
|
||||
|
||||
CDS archive(s) mapped at: [0x0000029555000000-0x0000029555c90000-0x0000029555c90000), size 13172736, SharedBaseAddress: 0x0000029555000000, ArchiveRelocationMode: 1.
|
||||
Compressed class space mapped at: 0x0000029556000000-0x0000029596000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x0000029555000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
|
||||
|
||||
GC Precious Log:
|
||||
CardTable entry size: 512
|
||||
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
|
||||
CPUs: 20 total, 20 available
|
||||
Memory: 49062M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (Zero based)
|
||||
Heap Region Size: 8M
|
||||
Heap Min Capacity: 8M
|
||||
Heap Initial Capacity: 768M
|
||||
Heap Max Capacity: 12272M
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 15
|
||||
Concurrent Workers: 4
|
||||
Concurrent Refinement Workers: 15
|
||||
Periodic GC: Disabled
|
||||
|
||||
Heap:
|
||||
garbage-first heap total 245760K, used 75522K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
|
||||
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
|
||||
| 0|0x0000000501000000, 0x0000000501800000, 0x0000000501800000|100%| O| |TAMS 0x0000000501000000| PB 0x0000000501000000| Untracked
|
||||
| 1|0x0000000501800000, 0x0000000502000000, 0x0000000502000000|100%| O| |TAMS 0x0000000501800000| PB 0x0000000501800000| Untracked
|
||||
| 2|0x0000000502000000, 0x00000005027fffd0, 0x0000000502800000| 99%| O| |TAMS 0x0000000502000000| PB 0x0000000502000000| Untracked
|
||||
| 3|0x0000000502800000, 0x0000000503000000, 0x0000000503000000|100%|HS| |TAMS 0x0000000502800000| PB 0x0000000502800000| Complete
|
||||
| 4|0x0000000503000000, 0x0000000503800000, 0x0000000503800000|100%|HC| |TAMS 0x0000000503000000| PB 0x0000000503000000| Complete
|
||||
| 5|0x0000000503800000, 0x0000000504000000, 0x0000000504000000|100%|HC| |TAMS 0x0000000503800000| PB 0x0000000503800000| Complete
|
||||
| 6|0x0000000504000000, 0x0000000504800000, 0x0000000504800000|100%|HC| |TAMS 0x0000000504000000| PB 0x0000000504000000| Complete
|
||||
| 7|0x0000000504800000, 0x0000000504800000, 0x0000000505000000| 0%| F| |TAMS 0x0000000504800000| PB 0x0000000504800000| Untracked
|
||||
| 8|0x0000000505000000, 0x0000000505000000, 0x0000000505800000| 0%| F| |TAMS 0x0000000505000000| PB 0x0000000505000000| Untracked
|
||||
| 9|0x0000000505800000, 0x0000000505a31370, 0x0000000506000000| 27%| O| |TAMS 0x0000000505800000| PB 0x0000000505800000| Untracked
|
||||
| 10|0x0000000506000000, 0x0000000506000000, 0x0000000506800000| 0%| F| |TAMS 0x0000000506000000| PB 0x0000000506000000| Untracked
|
||||
| 11|0x0000000506800000, 0x0000000506f8f500, 0x0000000507000000| 94%| S|CS|TAMS 0x0000000506800000| PB 0x0000000506800000| Complete
|
||||
| 12|0x0000000507000000, 0x0000000507000000, 0x0000000507800000| 0%| F| |TAMS 0x0000000507000000| PB 0x0000000507000000| Untracked
|
||||
| 13|0x0000000507800000, 0x0000000508000000, 0x0000000508000000|100%| S|CS|TAMS 0x0000000507800000| PB 0x0000000507800000| Complete
|
||||
| 14|0x0000000508000000, 0x0000000508000000, 0x0000000508800000| 0%| F| |TAMS 0x0000000508000000| PB 0x0000000508000000| Untracked
|
||||
| 15|0x0000000508800000, 0x0000000508800000, 0x0000000509000000| 0%| F| |TAMS 0x0000000508800000| PB 0x0000000508800000| Untracked
|
||||
| 16|0x0000000509000000, 0x0000000509000000, 0x0000000509800000| 0%| F| |TAMS 0x0000000509000000| PB 0x0000000509000000| Untracked
|
||||
| 17|0x0000000509800000, 0x0000000509800000, 0x000000050a000000| 0%| F| |TAMS 0x0000000509800000| PB 0x0000000509800000| Untracked
|
||||
| 18|0x000000050a000000, 0x000000050a000000, 0x000000050a800000| 0%| F| |TAMS 0x000000050a000000| PB 0x000000050a000000| Untracked
|
||||
| 19|0x000000050a800000, 0x000000050a800000, 0x000000050b000000| 0%| F| |TAMS 0x000000050a800000| PB 0x000000050a800000| Untracked
|
||||
| 20|0x000000050b000000, 0x000000050b000000, 0x000000050b800000| 0%| F| |TAMS 0x000000050b000000| PB 0x000000050b000000| Untracked
|
||||
| 21|0x000000050b800000, 0x000000050b800000, 0x000000050c000000| 0%| F| |TAMS 0x000000050b800000| PB 0x000000050b800000| Untracked
|
||||
| 22|0x000000050c000000, 0x000000050c000000, 0x000000050c800000| 0%| F| |TAMS 0x000000050c000000| PB 0x000000050c000000| Untracked
|
||||
| 23|0x000000050c800000, 0x000000050c800000, 0x000000050d000000| 0%| F| |TAMS 0x000000050c800000| PB 0x000000050c800000| Untracked
|
||||
| 24|0x000000050d000000, 0x000000050d000000, 0x000000050d800000| 0%| F| |TAMS 0x000000050d000000| PB 0x000000050d000000| Untracked
|
||||
| 25|0x000000050d800000, 0x000000050d800000, 0x000000050e000000| 0%| F| |TAMS 0x000000050d800000| PB 0x000000050d800000| Untracked
|
||||
| 26|0x000000050e000000, 0x000000050e000000, 0x000000050e800000| 0%| F| |TAMS 0x000000050e000000| PB 0x000000050e000000| Untracked
|
||||
| 27|0x000000050e800000, 0x000000050e800000, 0x000000050f000000| 0%| F| |TAMS 0x000000050e800000| PB 0x000000050e800000| Untracked
|
||||
| 28|0x000000050f000000, 0x000000050f000000, 0x000000050f800000| 0%| F| |TAMS 0x000000050f000000| PB 0x000000050f000000| Untracked
|
||||
| 29|0x000000050f800000, 0x000000050f800000, 0x0000000510000000| 0%| F| |TAMS 0x000000050f800000| PB 0x000000050f800000| Untracked
|
||||
|
||||
Card table byte_map: [0x0000029543820000,0x0000029545020000] _byte_map_base: 0x0000029541018000
|
||||
|
||||
Marking Bits: (CMBitMap*) 0x0000029529a39390
|
||||
Bits: [0x0000029545020000, 0x0000029550fe0000)
|
||||
|
||||
Polling page: 0x0000029528100000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 35.99 MB used.
|
||||
Class: 3.76 MB used.
|
||||
Both: 39.75 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 36.31 MB ( 57%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 4.25 MB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 40.56 MB ( 4%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 10.97 MB
|
||||
Class: 11.79 MB
|
||||
Both: 22.76 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 67.62 MB
|
||||
CDS: on
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- use_allocation_guard: 0.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 3.
|
||||
num_arena_births: 1634.
|
||||
num_arena_deaths: 436.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 648.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 523.
|
||||
num_chunks_taken_from_freelist: 2957.
|
||||
num_chunk_merges: 120.
|
||||
num_chunk_splits: 1630.
|
||||
num_chunks_enlarged: 737.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeHeap 'non-profiled nmethods': size=119168Kb used=11934Kb max_used=11950Kb free=107234Kb
|
||||
bounds [0x00000295399b0000, 0x000002953a560000, 0x0000029540e10000]
|
||||
CodeHeap 'profiled nmethods': size=119104Kb used=9650Kb max_used=12626Kb free=109453Kb
|
||||
bounds [0x0000029531e10000, 0x0000029532a70000, 0x0000029539260000]
|
||||
CodeHeap 'non-nmethods': size=7488Kb used=2035Kb max_used=3819Kb free=5452Kb
|
||||
bounds [0x0000029539260000, 0x0000029539640000, 0x00000295399b0000]
|
||||
total_blobs=6591 nmethods=5616 adapters=878
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (20 events):
|
||||
Event: 62557.757 Thread 0x00000295543e8f00 33810 3 java.io.PushbackInputStream::<init> (56 bytes)
|
||||
Event: 62557.758 Thread 0x00000295543e8f00 nmethod 33810 0x000002953228f690 code [0x000002953228f8e0, 0x0000029532290440]
|
||||
Event: 62559.752 Thread 0x00000295543e8f00 33811 ! 3 sun.nio.fs.WindowsFileAttributes::get (275 bytes)
|
||||
Event: 62559.755 Thread 0x00000295543e8f00 nmethod 33811 0x000002953228c310 code [0x000002953228c7a0, 0x000002953228e648]
|
||||
Event: 62559.755 Thread 0x00000295543e8f00 33812 ! 3 sun.nio.fs.WindowsNativeDispatcher::GetFileAttributesEx (73 bytes)
|
||||
Event: 62559.755 Thread 0x00000295543e8f00 nmethod 33812 0x0000029532292990 code [0x0000029532292be0, 0x0000029532293158]
|
||||
Event: 62559.819 Thread 0x00000295543e8f00 33813 3 sun.nio.cs.StreamDecoder::forInputStreamReader (11 bytes)
|
||||
Event: 62559.819 Thread 0x00000295543e7330 33815 4 java.nio.charset.CharsetDecoder::onMalformedInput (26 bytes)
|
||||
Event: 62559.819 Thread 0x00000295543e8f00 nmethod 33813 0x0000029531ffe210 code [0x0000029531ffe3c0, 0x0000029531ffe560]
|
||||
Event: 62559.819 Thread 0x00000295543e8f00 33814 3 sun.nio.cs.StreamDecoder::<init> (23 bytes)
|
||||
Event: 62559.820 Thread 0x00000295543e8f00 nmethod 33814 0x0000029532291f90 code [0x0000029532292180, 0x0000029532292770]
|
||||
Event: 62559.820 Thread 0x00000295543e8f00 33819 3 java.io.Reader::<init> (52 bytes)
|
||||
Event: 62559.821 Thread 0x00000295543e8f00 nmethod 33819 0x0000029532294890 code [0x0000029532294ac0, 0x0000029532295428]
|
||||
Event: 62559.822 Thread 0x00000295543e7330 nmethod 33815 0x000002953a52b810 code [0x000002953a52b9a0, 0x000002953a52bb20]
|
||||
Event: 62559.823 Thread 0x00000295543e7330 33816 4 java.nio.charset.CharsetDecoder::implOnMalformedInput (1 bytes)
|
||||
Event: 62559.823 Thread 0x00000295543e7330 nmethod 33816 0x000002953a52b510 code [0x000002953a52b6a0, 0x000002953a52b728]
|
||||
Event: 62559.823 Thread 0x00000295543e7330 33817 4 java.nio.charset.CharsetDecoder::onUnmappableCharacter (26 bytes)
|
||||
Event: 62559.824 Thread 0x00000295543e7330 nmethod 33817 0x000002953a46a610 code [0x000002953a46a7a0, 0x000002953a46a920]
|
||||
Event: 62559.825 Thread 0x00000295543e7330 33818 4 java.nio.charset.CharsetDecoder::implOnUnmappableCharacter (1 bytes)
|
||||
Event: 62559.825 Thread 0x00000295543e7330 nmethod 33818 0x000002953a52b210 code [0x000002953a52b3a0, 0x000002953a52b428]
|
||||
|
||||
GC Heap History (20 events):
|
||||
Event: 62757.067 GC heap after
|
||||
{Heap after GC invocations=9015 (full 768):
|
||||
garbage-first heap total 245760K, used 75516K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62773.835 GC heap before
|
||||
{Heap before GC invocations=9015 (full 768):
|
||||
garbage-first heap total 245760K, used 198396K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62773.876 GC heap after
|
||||
{Heap after GC invocations=9016 (full 768):
|
||||
garbage-first heap total 245760K, used 75834K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62790.835 GC heap before
|
||||
{Heap before GC invocations=9017 (full 768):
|
||||
garbage-first heap total 245760K, used 198714K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62790.878 GC heap after
|
||||
{Heap after GC invocations=9018 (full 768):
|
||||
garbage-first heap total 245760K, used 76110K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 3 young (24576K), 3 survivors (24576K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62806.831 GC heap before
|
||||
{Heap before GC invocations=9018 (full 768):
|
||||
garbage-first heap total 245760K, used 190798K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 3 survivors (24576K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62806.870 GC heap after
|
||||
{Heap after GC invocations=9019 (full 768):
|
||||
garbage-first heap total 245760K, used 74551K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62823.839 GC heap before
|
||||
{Heap before GC invocations=9020 (full 768):
|
||||
garbage-first heap total 245760K, used 197431K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62823.885 GC heap after
|
||||
{Heap after GC invocations=9021 (full 768):
|
||||
garbage-first heap total 245760K, used 75635K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62841.038 GC heap before
|
||||
{Heap before GC invocations=9021 (full 768):
|
||||
garbage-first heap total 245760K, used 198515K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62841.082 GC heap after
|
||||
{Heap after GC invocations=9022 (full 768):
|
||||
garbage-first heap total 245760K, used 75926K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62858.230 GC heap before
|
||||
{Heap before GC invocations=9023 (full 768):
|
||||
garbage-first heap total 245760K, used 198806K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62858.270 GC heap after
|
||||
{Heap after GC invocations=9024 (full 768):
|
||||
garbage-first heap total 245760K, used 75503K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62875.235 GC heap before
|
||||
{Heap before GC invocations=9024 (full 768):
|
||||
garbage-first heap total 245760K, used 198383K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62875.274 GC heap after
|
||||
{Heap after GC invocations=9025 (full 768):
|
||||
garbage-first heap total 245760K, used 75832K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62892.434 GC heap before
|
||||
{Heap before GC invocations=9026 (full 768):
|
||||
garbage-first heap total 245760K, used 198712K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62892.472 GC heap after
|
||||
{Heap after GC invocations=9027 (full 768):
|
||||
garbage-first heap total 245760K, used 75958K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62909.633 GC heap before
|
||||
{Heap before GC invocations=9027 (full 768):
|
||||
garbage-first heap total 245760K, used 198838K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62909.671 GC heap after
|
||||
{Heap after GC invocations=9028 (full 768):
|
||||
garbage-first heap total 245760K, used 75759K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 62926.634 GC heap before
|
||||
{Heap before GC invocations=9029 (full 768):
|
||||
garbage-first heap total 245760K, used 198639K [0x0000000501000000, 0x0000000800000000)
|
||||
region size 8192K, 17 young (139264K), 2 survivors (16384K)
|
||||
Metaspace used 40704K, committed 41536K, reserved 1114112K
|
||||
class space used 3846K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
|
||||
Dll operation events (15 events):
|
||||
Event: 0.008 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
|
||||
Event: 0.048 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
|
||||
Event: 0.074 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
|
||||
Event: 0.076 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
|
||||
Event: 0.086 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
|
||||
Event: 0.370 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
|
||||
Event: 0.747 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna15537866894699069720.dll
|
||||
Event: 1.361 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
|
||||
Event: 125.125 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
|
||||
Event: 125.880 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
|
||||
Event: 126.220 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
|
||||
Event: 126.222 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
|
||||
Event: 126.292 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-2926142163586000.dll
|
||||
Event: 130.040 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
|
||||
Event: 41997.956 Loaded shared library C:\Program Files\Java\jdk-21\bin\javajpeg.dll
|
||||
|
||||
Deoptimization events (20 events):
|
||||
Event: 62389.460 Thread 0x00000295aa3c0970 DEOPT PACKING pc=0x0000029532197e33 sp=0x000000c3423fe9b0
|
||||
Event: 62389.460 Thread 0x00000295aa3c0970 DEOPT UNPACKING pc=0x00000295392b4e42 sp=0x000000c3423fdea8 mode 0
|
||||
Event: 62390.399 Thread 0x00000295aa3c0970 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000029539ae98dc relative=0x0000000000000e1c
|
||||
Event: 62390.399 Thread 0x00000295aa3c0970 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000029539ae98dc method=java.awt.image.BufferedImage.getRGB(II)I @ 11 c2
|
||||
Event: 62390.399 Thread 0x00000295aa3c0970 DEOPT PACKING pc=0x0000029539ae98dc sp=0x000000c3423feb00
|
||||
Event: 62390.399 Thread 0x00000295aa3c0970 DEOPT UNPACKING pc=0x00000295392b46a2 sp=0x000000c3423fea30 mode 2
|
||||
Event: 62553.319 Thread 0x00000295aa3c0970 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002953a52b8e0 relative=0x0000000000000520
|
||||
Event: 62553.319 Thread 0x00000295aa3c0970 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002953a52b8e0 method=java.awt.image.ComponentSampleModel.getPixel(II[ILjava/awt/image/DataBuffer;)[I @ 35 c2
|
||||
Event: 62553.319 Thread 0x00000295aa3c0970 DEOPT PACKING pc=0x000002953a52b8e0 sp=0x000000c3423fe900
|
||||
Event: 62553.319 Thread 0x00000295aa3c0970 DEOPT UNPACKING pc=0x00000295392b46a2 sp=0x000000c3423fe890 mode 2
|
||||
Event: 62553.320 Thread 0x00000295a9d1d290 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000029539ea1368 relative=0x0000000000001068
|
||||
Event: 62553.320 Thread 0x00000295a9d1d290 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000029539ea1368 method=sun.security.ssl.SSLSocketImpl$AppInputStream.read([BII)I @ 262 c2
|
||||
Event: 62553.320 Thread 0x00000295a9d1d290 DEOPT PACKING pc=0x0000029539ea1368 sp=0x000000c341aff0d0
|
||||
Event: 62553.320 Thread 0x00000295a9d1d290 DEOPT UNPACKING pc=0x00000295392b46a2 sp=0x000000c341aff078 mode 2
|
||||
Event: 62553.320 Thread 0x00000295aa3c0970 DEOPT PACKING pc=0x000002953219804b sp=0x000000c3423fe9b0
|
||||
Event: 62553.320 Thread 0x00000295aa3c0970 DEOPT UNPACKING pc=0x00000295392b4e42 sp=0x000000c3423fdea8 mode 0
|
||||
Event: 62554.213 Thread 0x00000295aa3c0970 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000029539ae98dc relative=0x0000000000000e1c
|
||||
Event: 62554.213 Thread 0x00000295aa3c0970 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000029539ae98dc method=java.awt.image.BufferedImage.getRGB(II)I @ 11 c2
|
||||
Event: 62554.213 Thread 0x00000295aa3c0970 DEOPT PACKING pc=0x0000029539ae98dc sp=0x000000c3423feb00
|
||||
Event: 62554.213 Thread 0x00000295aa3c0970 DEOPT UNPACKING pc=0x00000295392b46a2 sp=0x000000c3423fea30 mode 2
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 41997.958 Loading class javax/imageio/plugins/jpeg/JPEGQTable
|
||||
Event: 41997.959 Loading class javax/imageio/plugins/jpeg/JPEGQTable done
|
||||
Event: 41997.959 Loading class javax/imageio/plugins/jpeg/JPEGHuffmanTable
|
||||
Event: 41997.960 Loading class javax/imageio/plugins/jpeg/JPEGHuffmanTable done
|
||||
Event: 41997.962 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock
|
||||
Event: 41997.963 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock done
|
||||
Event: 41997.963 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock$State
|
||||
Event: 41997.964 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$CallBackLock$State done
|
||||
Event: 41997.964 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$JPEGReaderDisposerRecord
|
||||
Event: 41997.965 Loading class com/sun/imageio/plugins/jpeg/JPEGImageReader$JPEGReaderDisposerRecord done
|
||||
Event: 41997.965 Loading class javax/imageio/plugins/jpeg/JPEGImageReadParam
|
||||
Event: 41997.965 Loading class javax/imageio/plugins/jpeg/JPEGImageReadParam done
|
||||
Event: 41997.967 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer
|
||||
Event: 41997.967 Loading class com/sun/imageio/plugins/jpeg/ImageTypeProducer done
|
||||
Event: 41997.968 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator
|
||||
Event: 41997.968 Loading class com/sun/imageio/plugins/jpeg/ImageTypeIterator done
|
||||
Event: 62221.276 Loading class java/awt/image/DataBufferUShort
|
||||
Event: 62221.282 Loading class java/awt/image/DataBufferUShort done
|
||||
Event: 62221.289 Loading class sun/awt/image/ShortInterleavedRaster
|
||||
Event: 62221.298 Loading class sun/awt/image/ShortInterleavedRaster done
|
||||
|
||||
Classes unloaded (20 events):
|
||||
Event: 17449.711 Thread 0x00000295533a58f0 Unloading class 0x000002955601c800 'java/lang/invoke/LambdaForm$MH+0x000002955601c800'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x000002955644cc00 'java/lang/invoke/LambdaForm$MH+0x000002955644cc00'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x000002955644dc00 'java/lang/invoke/LambdaForm$MH+0x000002955644dc00'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x000002955644e000 'java/lang/invoke/LambdaForm$MH+0x000002955644e000'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x000002955629c000 'java/lang/invoke/LambdaForm$MH+0x000002955629c000'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b6800 'java/lang/invoke/LambdaForm$MH+0x00000295560b6800'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b6000 'java/lang/invoke/LambdaForm$MH+0x00000295560b6000'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b5c00 'java/lang/invoke/LambdaForm$MH+0x00000295560b5c00'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b5800 'java/lang/invoke/LambdaForm$MH+0x00000295560b5800'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b5400 'java/lang/invoke/LambdaForm$MH+0x00000295560b5400'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b4c00 'java/lang/invoke/LambdaForm$MH+0x00000295560b4c00'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b4800 'java/lang/invoke/LambdaForm$MH+0x00000295560b4800'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560b4400 'java/lang/invoke/LambdaForm$MH+0x00000295560b4400'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560ad000 'java/lang/invoke/LambdaForm$MH+0x00000295560ad000'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560aa000 'java/lang/invoke/LambdaForm$MH+0x00000295560aa000'
|
||||
Event: 26549.838 Thread 0x00000295533a58f0 Unloading class 0x00000295560a9000 'java/lang/invoke/LambdaForm$MH+0x00000295560a9000'
|
||||
Event: 47801.928 Thread 0x00000295533a58f0 Unloading class 0x000002955644cc00 'java/lang/invoke/LambdaForm$MH+0x000002955644cc00'
|
||||
Event: 47801.928 Thread 0x00000295533a58f0 Unloading class 0x00000295560af800 'java/lang/invoke/LambdaForm$MH+0x00000295560af800'
|
||||
Event: 47801.928 Thread 0x00000295533a58f0 Unloading class 0x000002955644ec00 'java/lang/invoke/LambdaForm$MH+0x000002955644ec00'
|
||||
Event: 47801.928 Thread 0x00000295533a58f0 Unloading class 0x0000029556001400 'java/lang/invoke/LambdaForm$MH+0x0000029556001400'
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (20 events):
|
||||
Event: 61742.795 Thread 0x00000295a9a34640 Exception <a 'java/io/IOException'{0x0000000517d17e70}> (0x0000000517d17e70)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61742.806 Thread 0x00000295a9a36da0 Exception <a 'java/io/IOException'{0x0000000517ba1ae8}> (0x0000000517ba1ae8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61742.822 Thread 0x00000295a9a34640 Exception <a 'java/io/IOException'{0x0000000517d196a8}> (0x0000000517d196a8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61742.832 Thread 0x00000295a9a36da0 Exception <a 'java/io/IOException'{0x0000000517ba3320}> (0x0000000517ba3320)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61742.841 Thread 0x00000295a9a34640 Exception <a 'java/io/IOException'{0x0000000517d1aee0}> (0x0000000517d1aee0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61742.866 Thread 0x00000295a9a36da0 Exception <a 'java/io/IOException'{0x0000000517ba4b58}> (0x0000000517ba4b58)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61742.866 Thread 0x00000295a9a34640 Exception <a 'java/io/IOException'{0x0000000517d1e890}> (0x0000000517d1e890)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61742.880 Thread 0x00000295a9d1c570 Exception <a 'java/io/IOException'{0x0000000516c93af0}> (0x0000000516c93af0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61767.442 Thread 0x000002959aba8e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000050901bf88}> (0x000000050901bf88)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 61871.745 Thread 0x000002959aba8e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000050f81c008}> (0x000000050f81c008)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62062.167 Thread 0x000002959aba8e60 Exception <a 'sun/nio/fs/WindowsException'{0x00000005078185a8}> (0x00000005078185a8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62219.294 Thread 0x00000295a9d1d290 Exception <a 'java/io/IOException'{0x0000000516800608}> (0x0000000516800608)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62241.035 Thread 0x000002959aba8e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000050f81c1a0}> (0x000000050f81c1a0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62341.350 Thread 0x00000295a9a39500 Exception <a 'java/io/IOException'{0x000000051465c5d0}> (0x000000051465c5d0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62389.456 Thread 0x00000295aa3c0970 Implicit null exception at 0x000002953a529420 to 0x000002953a529a9c
|
||||
Event: 62408.481 Thread 0x000002959aba8e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000050f81cac0}> (0x000000050f81cac0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62553.319 Thread 0x00000295aa3c0970 Implicit null exception at 0x000002953a52b42d to 0x000002953a52b8bc
|
||||
Event: 62553.343 Thread 0x00000295a9a39500 Exception <a 'java/io/IOException'{0x00000005279f0fa8}> (0x00000005279f0fa8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62559.752 Thread 0x000002959aba8e60 Exception <a 'sun/nio/fs/WindowsException'{0x000000050f81b330}> (0x000000050f81b330)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 62857.260 Thread 0x00000295a9a34cd0 Exception <a 'java/io/IOException'{0x0000000508a81258}> (0x0000000508a81258)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
|
||||
ZGC Phase Switch (0 events):
|
||||
No events
|
||||
|
||||
VM Operations (20 events):
|
||||
Event: 62862.685 Executing VM operation: RendezvousGCThreads done
|
||||
Event: 62875.235 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 62875.274 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 62875.306 Executing VM operation: G1PauseRemark
|
||||
Event: 62875.310 Executing VM operation: G1PauseRemark done
|
||||
Event: 62875.317 Executing VM operation: G1PauseCleanup
|
||||
Event: 62875.317 Executing VM operation: G1PauseCleanup done
|
||||
Event: 62892.434 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 62892.472 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 62909.633 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 62909.671 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 62909.697 Executing VM operation: G1PauseRemark
|
||||
Event: 62909.701 Executing VM operation: G1PauseRemark done
|
||||
Event: 62909.707 Executing VM operation: G1PauseCleanup
|
||||
Event: 62909.707 Executing VM operation: G1PauseCleanup done
|
||||
Event: 62922.793 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation)
|
||||
Event: 62922.793 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation) done
|
||||
Event: 62922.793 Executing VM operation: RendezvousGCThreads
|
||||
Event: 62922.793 Executing VM operation: RendezvousGCThreads done
|
||||
Event: 62926.634 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
|
||||
Events (20 events):
|
||||
Event: 62559.649 Thread 0x00000295a9a32c00 Thread exited: 0x00000295a9a32c00
|
||||
Event: 62559.652 Thread 0x00000295a9a34640 Thread exited: 0x00000295a9a34640
|
||||
Event: 62559.654 Thread 0x00000295a9a37ac0 Thread exited: 0x00000295a9a37ac0
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x000002953a52b210
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x000002953224b390
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x0000029531ffe210
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x000002953218d590
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x0000029532193a90
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x0000029532291910
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x0000029532291f10
|
||||
Event: 62559.716 Thread 0x00000295533a58f0 flushing nmethod 0x0000029532293890
|
||||
Event: 62559.756 Thread 0x00000295a9d1bee0 Thread added: 0x00000295a9d1bee0
|
||||
Event: 62613.590 Thread 0x00000295a9a39500 Thread exited: 0x00000295a9a39500
|
||||
Event: 62617.252 Thread 0x00000295a9a36da0 Thread exited: 0x00000295a9a36da0
|
||||
Event: 62617.255 Thread 0x00000295aa3bd4f0 Thread exited: 0x00000295aa3bd4f0
|
||||
Event: 62773.912 Thread 0x00000295533a58f0 flushing nmethod 0x0000029539e9fe90
|
||||
Event: 62793.314 Thread 0x00000295aa3bc140 Thread exited: 0x00000295aa3bc140
|
||||
Event: 62794.091 Thread 0x00000295a9d1c570 Thread exited: 0x00000295a9d1c570
|
||||
Event: 62917.258 Thread 0x00000295a9d1d290 Thread exited: 0x00000295a9d1d290
|
||||
Event: 62917.272 Thread 0x00000295a9a34cd0 Thread exited: 0x00000295a9a34cd0
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff72c7c0000 - 0x00007ff72c7d0000 C:\Program Files\Java\jdk-21\bin\java.exe
|
||||
0x00007ffd19b10000 - 0x00007ffd19d27000 C:\Windows\SYSTEM32\ntdll.dll
|
||||
0x00007ffd18440000 - 0x00007ffd18504000 C:\Windows\System32\KERNEL32.DLL
|
||||
0x00007ffd173c0000 - 0x00007ffd17792000 C:\Windows\System32\KERNELBASE.dll
|
||||
0x00007ffd172a0000 - 0x00007ffd173b1000 C:\Windows\System32\ucrtbase.dll
|
||||
0x00007ffcf37e0000 - 0x00007ffcf37f9000 C:\Program Files\Java\jdk-21\bin\jli.dll
|
||||
0x00007ffcf1390000 - 0x00007ffcf13ab000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
|
||||
0x00007ffd17bb0000 - 0x00007ffd17c61000 C:\Windows\System32\ADVAPI32.dll
|
||||
0x00007ffd18510000 - 0x00007ffd185b7000 C:\Windows\System32\msvcrt.dll
|
||||
0x00007ffd177b0000 - 0x00007ffd17858000 C:\Windows\System32\sechost.dll
|
||||
0x00007ffd17130000 - 0x00007ffd17158000 C:\Windows\System32\bcrypt.dll
|
||||
0x00007ffd17870000 - 0x00007ffd17984000 C:\Windows\System32\RPCRT4.dll
|
||||
0x00007ffd19380000 - 0x00007ffd19531000 C:\Windows\System32\USER32.dll
|
||||
0x00007ffd17080000 - 0x00007ffd170a6000 C:\Windows\System32\win32u.dll
|
||||
0x00007ffcfbc80000 - 0x00007ffcfbf1b000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772\COMCTL32.dll
|
||||
0x00007ffd199c0000 - 0x00007ffd199e9000 C:\Windows\System32\GDI32.dll
|
||||
0x00007ffd16c00000 - 0x00007ffd16d23000 C:\Windows\System32\gdi32full.dll
|
||||
0x00007ffd16fe0000 - 0x00007ffd1707a000 C:\Windows\System32\msvcp_win.dll
|
||||
0x00007ffd108c0000 - 0x00007ffd108ca000 C:\Windows\SYSTEM32\VERSION.dll
|
||||
0x00007ffd17b70000 - 0x00007ffd17ba1000 C:\Windows\System32\IMM32.DLL
|
||||
0x00007ffcfa160000 - 0x00007ffcfa16c000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
|
||||
0x00007ffcedda0000 - 0x00007ffcede2e000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
|
||||
0x00007ffcbe980000 - 0x00007ffcbf69a000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
|
||||
0x00007ffd182e0000 - 0x00007ffd18351000 C:\Windows\System32\WS2_32.dll
|
||||
0x00007ffd16ad0000 - 0x00007ffd16b1d000 C:\Windows\SYSTEM32\POWRPROF.dll
|
||||
0x00007ffd06240000 - 0x00007ffd06274000 C:\Windows\SYSTEM32\WINMM.dll
|
||||
0x00007ffd16ab0000 - 0x00007ffd16ac3000 C:\Windows\SYSTEM32\UMPDC.dll
|
||||
0x00007ffd15c30000 - 0x00007ffd15c48000 C:\Windows\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ffcfa110000 - 0x00007ffcfa11a000 C:\Program Files\Java\jdk-21\bin\jimage.dll
|
||||
0x00007ffd05750000 - 0x00007ffd05983000 C:\Windows\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffd17c90000 - 0x00007ffd18023000 C:\Windows\System32\combase.dll
|
||||
0x00007ffd199f0000 - 0x00007ffd19ac7000 C:\Windows\System32\OLEAUT32.dll
|
||||
0x00007ffcf5550000 - 0x00007ffcf5582000 C:\Windows\SYSTEM32\dbgcore.DLL
|
||||
0x00007ffd170b0000 - 0x00007ffd1712b000 C:\Windows\System32\bcryptPrimitives.dll
|
||||
0x00007ffcefbb0000 - 0x00007ffcefbcf000 C:\Program Files\Java\jdk-21\bin\java.dll
|
||||
0x00007ffd185c0000 - 0x00007ffd18e62000 C:\Windows\System32\SHELL32.dll
|
||||
0x00007ffd16d30000 - 0x00007ffd16e6f000 C:\Windows\System32\wintypes.dll
|
||||
0x00007ffd14b30000 - 0x00007ffd1544d000 C:\Windows\SYSTEM32\windows.storage.dll
|
||||
0x00007ffd18030000 - 0x00007ffd1813c000 C:\Windows\System32\SHCORE.dll
|
||||
0x00007ffd17af0000 - 0x00007ffd17b59000 C:\Windows\System32\shlwapi.dll
|
||||
0x00007ffd16b30000 - 0x00007ffd16b5b000 C:\Windows\SYSTEM32\profapi.dll
|
||||
0x00007ffce7830000 - 0x00007ffce7907000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
|
||||
0x00007ffcf9ed0000 - 0x00007ffcf9ee0000 C:\Program Files\Java\jdk-21\bin\net.dll
|
||||
0x00007ffd13020000 - 0x00007ffd1314c000 C:\Windows\SYSTEM32\WINHTTP.dll
|
||||
0x00007ffd160b0000 - 0x00007ffd16119000 C:\Windows\system32\mswsock.dll
|
||||
0x00007ffcefb90000 - 0x00007ffcefba6000 C:\Program Files\Java\jdk-21\bin\nio.dll
|
||||
0x00007ffcefb70000 - 0x00007ffcefb88000 C:\Program Files\Java\jdk-21\bin\zip.dll
|
||||
0x00007ffd16310000 - 0x00007ffd1632b000 C:\Windows\SYSTEM32\CRYPTSP.dll
|
||||
0x00007ffd15b90000 - 0x00007ffd15bc7000 C:\Windows\system32\rsaenh.dll
|
||||
0x00007ffd161a0000 - 0x00007ffd161c8000 C:\Windows\SYSTEM32\USERENV.dll
|
||||
0x00007ffd16300000 - 0x00007ffd1630c000 C:\Windows\SYSTEM32\CRYPTBASE.dll
|
||||
0x00007ffd156b0000 - 0x00007ffd156dd000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
|
||||
0x00007ffd177a0000 - 0x00007ffd177a9000 C:\Windows\System32\NSI.dll
|
||||
0x00007ffce76d0000 - 0x00007ffce7719000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna15537866894699069720.dll
|
||||
0x00007ffd17b60000 - 0x00007ffd17b68000 C:\Windows\System32\PSAPI.DLL
|
||||
0x00007ffcf9380000 - 0x00007ffcf9390000 C:\Program Files\Java\jdk-21\bin\verify.dll
|
||||
0x00007ffcee7f0000 - 0x00007ffcee807000 C:\Windows\system32\napinsp.dll
|
||||
0x00007ffcee810000 - 0x00007ffcee82b000 C:\Windows\system32\pnrpnsp.dll
|
||||
0x00007ffd15720000 - 0x00007ffd15818000 C:\Windows\SYSTEM32\DNSAPI.dll
|
||||
0x00007ffcee830000 - 0x00007ffcee841000 C:\Windows\System32\winrnr.dll
|
||||
0x00007ffcf5a90000 - 0x00007ffcf5aaf000 C:\Windows\system32\wshbth.dll
|
||||
0x00007ffcee8b0000 - 0x00007ffcee8d1000 C:\Windows\system32\nlansp_c.dll
|
||||
0x00007ffd0c2c0000 - 0x00007ffd0c2ca000 C:\Windows\System32\rasadhlp.dll
|
||||
0x00007ffd105e0000 - 0x00007ffd10664000 C:\Windows\System32\fwpuclnt.dll
|
||||
0x00007ffcda230000 - 0x00007ffcda62c000 C:\Windows\SYSTEM32\nvcuda.dll
|
||||
0x00007ffd14290000 - 0x00007ffd142c7000 C:\Windows\SYSTEM32\dxcore.dll
|
||||
0x00007ffcbc850000 - 0x00007ffcbe97e000 C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\nvcuda64.dll
|
||||
0x00007ffd16360000 - 0x00007ffd16372000 C:\Windows\SYSTEM32\msasn1.dll
|
||||
0x00007ffd10720000 - 0x00007ffd10752000 C:\Windows\SYSTEM32\cryptnet.dll
|
||||
0x00007ffd16e70000 - 0x00007ffd16fd7000 C:\Windows\System32\CRYPT32.dll
|
||||
0x00007ffd163d0000 - 0x00007ffd16420000 C:\Windows\SYSTEM32\wldp.dll
|
||||
0x00007ffd10450000 - 0x00007ffd105aa000 C:\Windows\SYSTEM32\drvstore.dll
|
||||
0x00007ffd167d0000 - 0x00007ffd167fc000 C:\Windows\SYSTEM32\devobj.dll
|
||||
0x00007ffd16800000 - 0x00007ffd1684e000 C:\Windows\SYSTEM32\cfgmgr32.dll
|
||||
0x00007ffd051c0000 - 0x00007ffd05745000 C:\Windows\SYSTEM32\nvapi64.dll
|
||||
0x00007ffd18e70000 - 0x00007ffd192e4000 C:\Windows\System32\SETUPAPI.dll
|
||||
0x00007ffd18140000 - 0x00007ffd182e0000 C:\Windows\System32\ole32.dll
|
||||
0x00007ffce6470000 - 0x00007ffce6507000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\nvdxgdmal64.dll
|
||||
0x00007ffcdeff0000 - 0x00007ffcdf130000 C:\Windows\SYSTEM32\nvml.dll
|
||||
0x00007ffcbb7c0000 - 0x00007ffcbc844000 C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\nvml.dll
|
||||
0x00007ffcde130000 - 0x00007ffcde2bf000 C:\Program Files\Java\jdk-21\bin\awt.dll
|
||||
0x00007ffd12f80000 - 0x00007ffd13017000 C:\Windows\SYSTEM32\apphelp.dll
|
||||
0x00007ffd143e0000 - 0x00007ffd1440e000 C:\Windows\system32\DWMAPI.DLL
|
||||
0x00007ffd14170000 - 0x00007ffd14224000 C:\Windows\system32\uxtheme.dll
|
||||
0x00007ffce2140000 - 0x00007ffce2240000 C:\Windows\system32\opengl32.dll
|
||||
0x00007ffd10de0000 - 0x00007ffd10e0d000 C:\Windows\SYSTEM32\GLU32.dll
|
||||
0x00007ffd19860000 - 0x00007ffd199c0000 C:\Windows\System32\MSCTF.dll
|
||||
0x00007ffce9d70000 - 0x00007ffce9f18000 C:\Windows\system32\d3d9.dll
|
||||
0x00007ffd17160000 - 0x00007ffd171dc000 C:\Windows\System32\wintrust.dll
|
||||
0x00007ffd19660000 - 0x00007ffd1967f000 C:\Windows\System32\imagehlp.dll
|
||||
0x00007ffd0f0a0000 - 0x00007ffd0f0ea000 C:\Windows\SYSTEM32\directxdatabasehelper.dll
|
||||
0x00007ffd0b080000 - 0x00007ffd0b144000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\nvldumdx.dll
|
||||
0x00007ffd06f90000 - 0x00007ffd0ad23000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\nvgpucomp64.dll
|
||||
0x00007ffd04fa0000 - 0x00007ffd0507e000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\NvMemMapStoragex.dll
|
||||
0x00007ffcb8cb0000 - 0x00007ffcbb7b5000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\nvd3dumx.dll
|
||||
0x00007ffcdfcb0000 - 0x00007ffcdffc4000 C:\Windows\system32\nvspcap64.dll
|
||||
0x00007ffd15d40000 - 0x00007ffd15d74000 C:\Windows\SYSTEM32\ntmarta.dll
|
||||
0x00007ffd16140000 - 0x00007ffd16166000 C:\Windows\SYSTEM32\gpapi.dll
|
||||
0x00007ffce03d0000 - 0x00007ffce0587000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b\nvppex.dll
|
||||
0x00007ffd10dd0000 - 0x00007ffd10dde000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
|
||||
0x00007ffd164c0000 - 0x00007ffd164ed000 C:\Windows\SYSTEM32\ncrypt.dll
|
||||
0x00007ffd16480000 - 0x00007ffd164b7000 C:\Windows\SYSTEM32\NTASN1.dll
|
||||
0x00007ffce12a0000 - 0x00007ffce1327000 C:\Program Files\Java\jdk-21\bin\freetype.dll
|
||||
0x00007ffce0a00000 - 0x00007ffce0ae1000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
|
||||
0x00007ffcf6420000 - 0x00007ffcf6426000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-2926142163586000.dll
|
||||
0x00007ffd10c30000 - 0x00007ffd10c37000 C:\Program Files\Java\jdk-21\bin\jawt.dll
|
||||
0x00007ffcfae70000 - 0x00007ffcfaf23000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
|
||||
0x00007ffd195b0000 - 0x00007ffd19660000 C:\Windows\System32\clbcatq.dll
|
||||
0x00007ffd134c0000 - 0x00007ffd135c9000 C:\Windows\SYSTEM32\PROPSYS.dll
|
||||
0x00007ffce2ff0000 - 0x00007ffce300a000 C:\Windows\system32\NetworkExplorer.dll
|
||||
0x00007ffcf67e0000 - 0x00007ffcf67fe000 C:\Windows\SYSTEM32\MPR.dll
|
||||
0x00007ffcebee0000 - 0x00007ffcebf0b000 C:\Windows\System32\p9np.dll
|
||||
0x00007ffcf65b0000 - 0x00007ffcf65bc000 C:\Windows\System32\drprov.dll
|
||||
0x00007ffcf0480000 - 0x00007ffcf0499000 C:\Windows\System32\ntlanman.dll
|
||||
0x00007ffcef090000 - 0x00007ffcef0af000 C:\Windows\System32\davclnt.dll
|
||||
0x00007ffd16980000 - 0x00007ffd169ec000 C:\Windows\System32\WINSTA.dll
|
||||
0x00007ffd10f50000 - 0x00007ffd10f6a000 C:\Windows\System32\wkscli.dll
|
||||
0x00007ffcf6290000 - 0x00007ffcf62a2000 C:\Windows\SYSTEM32\cscapi.dll
|
||||
0x00007ffd156a0000 - 0x00007ffd156ac000 C:\Windows\System32\netutils.dll
|
||||
0x00007ffce0800000 - 0x00007ffce085e000 C:\Windows\System32\dlnashext.dll
|
||||
0x00007ffcf6990000 - 0x00007ffcf69f9000 C:\Windows\System32\PlayToDevice.dll
|
||||
0x00007ffced150000 - 0x00007ffced171000 C:\Windows\System32\DevDispItemProvider.dll
|
||||
0x00007ffd0f200000 - 0x00007ffd0f29c000 C:\Windows\System32\MMDevApi.dll
|
||||
0x00007ffcf04a0000 - 0x00007ffcf04f6000 C:\Windows\SYSTEM32\rdpendp.dll
|
||||
0x00007ffcfe010000 - 0x00007ffcfe0d1000 C:\Windows\SYSTEM32\TextShaping.dll
|
||||
0x00007ffd159e0000 - 0x00007ffd159f4000 C:\Windows\SYSTEM32\WTSAPI32.dll
|
||||
0x00007ffcede30000 - 0x00007ffcededa000 C:\Windows\system32\wpdshext.dll
|
||||
0x00007ffcfbf20000 - 0x00007ffcfc0e1000 C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5547_none_57fb3de0ce17d140\gdiplus.dll
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_9cefe84c51ec4d1b;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5547_none_57fb3de0ce17d140;C:\Windows\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25070.5-0
|
||||
|
||||
VM Arguments:
|
||||
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir S:\SheepIt\cache1
|
||||
java_class_path (initial): sheepit-client-7.25182.0.jar
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
intx CICompilerCount = 12 {product} {ergonomic}
|
||||
uint ConcGCThreads = 4 {product} {ergonomic}
|
||||
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
|
||||
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
|
||||
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
|
||||
size_t InitialHeapSize = 805306368 {product} {ergonomic}
|
||||
size_t MarkStackSize = 4194304 {product} {ergonomic}
|
||||
size_t MaxHeapSize = 12868124672 {product} {ergonomic}
|
||||
size_t MaxNewSize = 7717519360 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
|
||||
size_t MinHeapSize = 8388608 {product} {ergonomic}
|
||||
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
|
||||
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
|
||||
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
||||
bool SegmentedCodeCache = true {product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 12868124672 {manageable} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseG1GC = true {product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=warning uptime,level,tags foldmultilines=false
|
||||
#1: stderr all=off uptime,level,tags foldmultilines=false
|
||||
|
||||
Environment Variables:
|
||||
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Program Files\Tailscale\;C:\Program Files\cursor\resources\app\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;;C:\Program Files\Blender Foundation\Blender 4.5
|
||||
USERNAME=Nathan
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
|
||||
TMP=C:\Users\Nathan\AppData\Local\Temp
|
||||
TEMP=C:\Users\Nathan\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
|
||||
OS uptime: 4 days 2:43 hours
|
||||
|
||||
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
|
||||
Processor Information for all 20 processors :
|
||||
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
|
||||
|
||||
Memory: 4k page, system-wide physical 49062M (317M free)
|
||||
TotalPageFile size 108667M (AvailPageFile size 11M)
|
||||
current process WorkingSet (physical memory assigned to process): 254M, peak: 982M
|
||||
current process commit charge ("private bytes"): 539M, peak: 1229M
|
||||
|
||||
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
|
||||
|
||||
END.
|
||||
804
hs_err_pid25732.log
Normal file
804
hs_err_pid25732.log
Normal file
@@ -0,0 +1,804 @@
|
||||
#
|
||||
# There is insufficient memory for the Java Runtime Environment to continue.
|
||||
# Native memory allocation (mmap) failed to map 452984832 bytes for G1 virtual space
|
||||
# Possible reasons:
|
||||
# The system is out of physical RAM or swap space
|
||||
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
|
||||
# Possible solutions:
|
||||
# Reduce memory load on the system
|
||||
# Increase physical memory or swap space
|
||||
# Check if swap backing store is full
|
||||
# Decrease Java heap size (-Xmx/-Xms)
|
||||
# Decrease number of Java threads
|
||||
# Decrease Java thread stack sizes (-Xss)
|
||||
# Set larger code cache with -XX:ReservedCodeCacheSize=
|
||||
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
|
||||
# placed in the first 32GB address space. The Java Heap base address is the
|
||||
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
|
||||
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
|
||||
# This output file may be truncated or incomplete.
|
||||
#
|
||||
# Out of Memory Error (os_windows.cpp:3603), pid=25732, tid=14924
|
||||
#
|
||||
# JRE version: Java(TM) SE Runtime Environment (21.0.7+8) (build 21.0.7+8-LTS-245)
|
||||
# Java VM: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
|
||||
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
|
||||
#
|
||||
|
||||
--------------- S U M M A R Y ------------
|
||||
|
||||
Command Line: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir S:\SheepIt\cache0
|
||||
|
||||
Host: Intel(R) Xeon(R) CPU E5-2630 v4 @ 2.20GHz, 20 cores, 63G, Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
|
||||
Time: Thu Aug 7 08:58:06 2025 Mountain Daylight Time elapsed time: 261862.624318 seconds (3d 0h 44m 22s)
|
||||
|
||||
--------------- T H R E A D ---------------
|
||||
|
||||
Current thread (0x000001b7e31347a0): VMThread "VM Thread" [id=14924, stack(0x0000002301900000,0x0000002301a00000) (1024K)]
|
||||
|
||||
Stack: [0x0000002301900000,0x0000002301a00000]
|
||||
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||
V [jvm.dll+0x6cae19]
|
||||
V [jvm.dll+0x855741]
|
||||
V [jvm.dll+0x857c6e]
|
||||
V [jvm.dll+0x858343]
|
||||
V [jvm.dll+0x27e0b6]
|
||||
V [jvm.dll+0x6c7595]
|
||||
V [jvm.dll+0x6bc0fa]
|
||||
V [jvm.dll+0x353eaa]
|
||||
V [jvm.dll+0x35bb26]
|
||||
V [jvm.dll+0x3ae52e]
|
||||
V [jvm.dll+0x3ae7d8]
|
||||
V [jvm.dll+0x3281bc]
|
||||
V [jvm.dll+0x328247]
|
||||
V [jvm.dll+0x36cbcc]
|
||||
V [jvm.dll+0x36b41e]
|
||||
V [jvm.dll+0x327981]
|
||||
V [jvm.dll+0x36ab3a]
|
||||
V [jvm.dll+0x85e110]
|
||||
V [jvm.dll+0x85f494]
|
||||
V [jvm.dll+0x85f9d0]
|
||||
V [jvm.dll+0x85fc73]
|
||||
V [jvm.dll+0x7ffa1b]
|
||||
V [jvm.dll+0x6c94fd]
|
||||
C [ucrtbase.dll+0x29333]
|
||||
C [KERNEL32.DLL+0x1259d]
|
||||
C [ntdll.dll+0x5af78]
|
||||
|
||||
VM_Operation (0x00000023046fe6c0): G1CollectForAllocation, mode: safepoint, requested by thread 0x000001b8074a6850
|
||||
|
||||
|
||||
--------------- P R O C E S S ---------------
|
||||
|
||||
Threads class SMR info:
|
||||
_java_thread_list=0x000001b7fa9b2990, length=30, elements={
|
||||
0x000001b7e314c970, 0x000001b7e314d130, 0x000001b7e314e900, 0x000001b7e314ef60,
|
||||
0x000001b7e3159860, 0x000001b7e315ded0, 0x000001b7e3161d60, 0x000001b7e3164410,
|
||||
0x000001b7fa4504a0, 0x000001b7fa4518f0, 0x000001b7ff292350, 0x000001b7fa2ded20,
|
||||
0x000001b7ff414630, 0x000001b7fa401330, 0x000001b7ffa9f140, 0x000001b806cce970,
|
||||
0x000001b7ffefc080, 0x000001b7ffefb9f0, 0x000001b7ffefa640, 0x000001b7ffefacd0,
|
||||
0x000001b7ffefb360, 0x000001b8074a7570, 0x000001b8074a8920, 0x000001b8074a54a0,
|
||||
0x000001b8074a8290, 0x000001b7ffefc710, 0x000001b80783d240, 0x000001b80783cbb0,
|
||||
0x000001b80783e5f0, 0x000001b8074a6850
|
||||
}
|
||||
|
||||
Java Threads: ( => current thread )
|
||||
0x000001b7e314c970 JavaThread "Reference Handler" daemon [_thread_blocked, id=21388, stack(0x0000002301a00000,0x0000002301b00000) (1024K)]
|
||||
0x000001b7e314d130 JavaThread "Finalizer" daemon [_thread_blocked, id=26616, stack(0x0000002301b00000,0x0000002301c00000) (1024K)]
|
||||
0x000001b7e314e900 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=26376, stack(0x0000002301c00000,0x0000002301d00000) (1024K)]
|
||||
0x000001b7e314ef60 JavaThread "Attach Listener" daemon [_thread_blocked, id=26220, stack(0x0000002301d00000,0x0000002301e00000) (1024K)]
|
||||
0x000001b7e3159860 JavaThread "Service Thread" daemon [_thread_blocked, id=8096, stack(0x0000002301e00000,0x0000002301f00000) (1024K)]
|
||||
0x000001b7e315ded0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=26216, stack(0x0000002301f00000,0x0000002302000000) (1024K)]
|
||||
0x000001b7e3161d60 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=8852, stack(0x0000002302000000,0x0000002302100000) (1024K)]
|
||||
0x000001b7e3164410 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=26224, stack(0x0000002302100000,0x0000002302200000) (1024K)]
|
||||
0x000001b7fa4504a0 JavaThread "Notification Thread" daemon [_thread_blocked, id=25548, stack(0x0000002302300000,0x0000002302400000) (1024K)]
|
||||
0x000001b7fa4518f0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=25636, stack(0x0000002302400000,0x0000002302500000) (1024K)]
|
||||
0x000001b7ff292350 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=12436, stack(0x0000002302700000,0x0000002302800000) (1024K)]
|
||||
0x000001b7fa2ded20 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=14880, stack(0x0000002302800000,0x0000002302900000) (1024K)]
|
||||
0x000001b7ff414630 JavaThread "AWT-Windows" daemon [_thread_blocked, id=24936, stack(0x0000002303b00000,0x0000002303c00000) (1024K)]
|
||||
0x000001b7fa401330 JavaThread "Timer-0" [_thread_blocked, id=14916, stack(0x0000002304000000,0x0000002304100000) (1024K)]
|
||||
0x000001b7ffa9f140 JavaThread "TimerQueue" daemon [_thread_blocked, id=3692, stack(0x0000002304300000,0x0000002304400000) (1024K)]
|
||||
0x000001b806cce970 JavaThread "Swing-Shell" daemon [_thread_blocked, id=13472, stack(0x0000002303f00000,0x0000002304000000) (1024K)]
|
||||
0x000001b7ffefc080 JavaThread "AWT-Shutdown" [_thread_blocked, id=9976, stack(0x0000002304100000,0x0000002304200000) (1024K)]
|
||||
0x000001b7ffefb9f0 JavaThread "AWT-EventQueue-0" [_thread_blocked, id=18396, stack(0x0000002304200000,0x0000002304300000) (1024K)]
|
||||
0x000001b7ffefa640 JavaThread "Thread-3" [_thread_in_native, id=18576, stack(0x0000002304900000,0x0000002304a00000) (1024K)]
|
||||
0x000001b7ffefacd0 JavaThread "D3D Screen Updater" daemon [_thread_blocked, id=7224, stack(0x0000002304c00000,0x0000002304d00000) (1024K)]
|
||||
0x000001b7ffefb360 JavaThread "DestroyJavaVM" [_thread_blocked, id=25800, stack(0x0000002301200000,0x0000002301300000) (1024K)]
|
||||
0x000001b8074a7570 JavaThread "Thread-1" [_thread_blocked, id=9844, stack(0x0000002304f00000,0x0000002305000000) (1024K)]
|
||||
0x000001b8074a8920 JavaThread "Thread-4" [_thread_blocked, id=12412, stack(0x0000002305000000,0x0000002305100000) (1024K)]
|
||||
0x000001b8074a54a0 JavaThread "Timer-1" [_thread_blocked, id=5404, stack(0x0000002306200000,0x0000002306300000) (1024K)]
|
||||
0x000001b8074a8290 JavaThread "pool-4-thread-1" [_thread_blocked, id=6148, stack(0x0000002300f00000,0x0000002301000000) (1024K)]
|
||||
0x000001b7ffefc710 JavaThread "OkHttp client.sheepit-renderfarm.com" daemon [_thread_in_native, id=20896, stack(0x0000002302500000,0x0000002302600000) (1024K)]
|
||||
0x000001b80783d240 JavaThread "OkHttp shepherd-titan-de.sheepit-renderfarm.com" daemon [_thread_in_native, id=34180, stack(0x0000002301100000,0x0000002301200000) (1024K)]
|
||||
0x000001b80783cbb0 JavaThread "OkHttp sheepit-main-weur-projects.sheepit-r2-binaries.win" daemon [_thread_in_native, id=31872, stack(0x0000002302900000,0x0000002302a00000) (1024K)]
|
||||
0x000001b80783e5f0 JavaThread "OkHttp TaskRunner" daemon [_thread_blocked, id=28272, stack(0x0000002304400000,0x0000002304500000) (1024K)]
|
||||
0x000001b8074a6850 JavaThread "Timer-880" [_thread_blocked, id=40720, stack(0x0000002304600000,0x0000002304700000) (1024K)]
|
||||
Total: 30
|
||||
|
||||
Other Threads:
|
||||
=>0x000001b7e31347a0 VMThread "VM Thread" [id=14924, stack(0x0000002301900000,0x0000002301a00000) (1024K)]
|
||||
0x000001b7fa2b19e0 WatcherThread "VM Periodic Task Thread" [id=26228, stack(0x0000002301800000,0x0000002301900000) (1024K)]
|
||||
0x000001b7e2ff06b0 WorkerThread "GC Thread#0" [id=1356, stack(0x0000002301300000,0x0000002301400000) (1024K)]
|
||||
0x000001b7ff0bb560 WorkerThread "GC Thread#1" [id=23300, stack(0x0000002302b00000,0x0000002302c00000) (1024K)]
|
||||
0x000001b7ff2f36d0 WorkerThread "GC Thread#2" [id=23304, stack(0x0000002302c00000,0x0000002302d00000) (1024K)]
|
||||
0x000001b7ff0c0a40 WorkerThread "GC Thread#3" [id=5572, stack(0x0000002302d00000,0x0000002302e00000) (1024K)]
|
||||
0x000001b7ff0c0de0 WorkerThread "GC Thread#4" [id=4940, stack(0x0000002302e00000,0x0000002302f00000) (1024K)]
|
||||
0x000001b7ff0c1180 WorkerThread "GC Thread#5" [id=23920, stack(0x0000002302f00000,0x0000002303000000) (1024K)]
|
||||
0x000001b7ff293500 WorkerThread "GC Thread#6" [id=22820, stack(0x0000002303000000,0x0000002303100000) (1024K)]
|
||||
0x000001b7ff2938a0 WorkerThread "GC Thread#7" [id=8488, stack(0x0000002303100000,0x0000002303200000) (1024K)]
|
||||
0x000001b7ff294050 WorkerThread "GC Thread#8" [id=10776, stack(0x0000002303200000,0x0000002303300000) (1024K)]
|
||||
0x000001b7ff141550 WorkerThread "GC Thread#9" [id=26268, stack(0x0000002303300000,0x0000002303400000) (1024K)]
|
||||
0x000001b7ff1418f0 WorkerThread "GC Thread#10" [id=25868, stack(0x0000002303400000,0x0000002303500000) (1024K)]
|
||||
0x000001b7ff141c90 WorkerThread "GC Thread#11" [id=15316, stack(0x0000002303500000,0x0000002303600000) (1024K)]
|
||||
0x000001b7ff5c86a0 WorkerThread "GC Thread#12" [id=26580, stack(0x0000002303600000,0x0000002303700000) (1024K)]
|
||||
0x000001b7ff5c8a40 WorkerThread "GC Thread#13" [id=20864, stack(0x0000002303700000,0x0000002303800000) (1024K)]
|
||||
0x000001b7ff5c7480 WorkerThread "GC Thread#14" [id=23788, stack(0x0000002303800000,0x0000002303900000) (1024K)]
|
||||
0x000001b7ca9b6b60 ConcurrentGCThread "G1 Main Marker" [id=12456, stack(0x0000002301400000,0x0000002301500000) (1024K)]
|
||||
0x000001b7ca9b7560 WorkerThread "G1 Conc#0" [id=15440, stack(0x0000002301500000,0x0000002301600000) (1024K)]
|
||||
0x000001b7ff9c2220 WorkerThread "G1 Conc#1" [id=25220, stack(0x0000002303e00000,0x0000002303f00000) (1024K)]
|
||||
0x000001b7ff9c1000 WorkerThread "G1 Conc#2" [id=15692, stack(0x0000002304700000,0x0000002304800000) (1024K)]
|
||||
0x000001b7ff9bfa40 WorkerThread "G1 Conc#3" [id=22108, stack(0x0000002304800000,0x0000002304900000) (1024K)]
|
||||
0x000001b7e3065190 ConcurrentGCThread "G1 Refine#0" [id=23320, stack(0x0000002301600000,0x0000002301700000) (1024K)]
|
||||
0x000001b7e3067730 ConcurrentGCThread "G1 Service" [id=25216, stack(0x0000002301700000,0x0000002301800000) (1024K)]
|
||||
Total: 24
|
||||
|
||||
Threads with active compile tasks:
|
||||
Total: 0
|
||||
|
||||
VM state: at safepoint (normal execution)
|
||||
|
||||
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
|
||||
[0x00007ffc42e1de50] Threads_lock - owner thread: 0x000001b7e31347a0
|
||||
[0x00007ffc42e1df50] Heap_lock - owner thread: 0x000001b8074a6850
|
||||
|
||||
Heap address: 0x0000000401000000, size: 16368 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
|
||||
|
||||
CDS archive(s) mapped at: [0x000001b780000000-0x000001b780c90000-0x000001b780c90000), size 13172736, SharedBaseAddress: 0x000001b780000000, ArchiveRelocationMode: 1.
|
||||
Compressed class space mapped at: 0x000001b781000000-0x000001b7c1000000, reserved size: 1073741824
|
||||
Narrow klass base: 0x000001b780000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
|
||||
|
||||
GC Precious Log:
|
||||
CardTable entry size: 512
|
||||
Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 64 size 144 Howl #buckets 8 coarsen threshold 14745 Howl Bitmap #cards 2048 size 272 coarsen threshold 1843 Card regions per heap region 1 cards per card region 16384
|
||||
CPUs: 20 total, 20 available
|
||||
Memory: 65446M
|
||||
Large Page Support: Disabled
|
||||
NUMA Support: Disabled
|
||||
Compressed Oops: Enabled (Zero based)
|
||||
Heap Region Size: 8M
|
||||
Heap Min Capacity: 8M
|
||||
Heap Initial Capacity: 1G
|
||||
Heap Max Capacity: 16368M
|
||||
Pre-touch: Disabled
|
||||
Parallel Workers: 15
|
||||
Concurrent Workers: 4
|
||||
Concurrent Refinement Workers: 15
|
||||
Periodic GC: Disabled
|
||||
|
||||
Heap:
|
||||
garbage-first heap total 163840K, used 47031K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
|
||||
Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
|
||||
| 0|0x0000000401000000, 0x0000000401800000, 0x0000000401800000|100%|HS| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked
|
||||
| 1|0x0000000401800000, 0x0000000401ff5238, 0x0000000402000000| 99%| O| |TAMS 0x0000000401800000| PB 0x0000000401800000| Untracked
|
||||
| 2|0x0000000402000000, 0x00000004027f4e28, 0x0000000402800000| 99%| O| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked
|
||||
| 3|0x0000000402800000, 0x0000000402c28238, 0x0000000403000000| 51%| O|Cm|TAMS 0x0000000402800000| PB 0x0000000402800000| Complete
|
||||
| 4|0x0000000403000000, 0x0000000403800000, 0x0000000403800000|100%|HS| |TAMS 0x0000000403000000| PB 0x0000000403000000| Complete
|
||||
| 5|0x0000000403800000, 0x0000000403800000, 0x0000000404000000| 0%| F| |TAMS 0x0000000403800000| PB 0x0000000403800000| Untracked
|
||||
| 6|0x0000000404000000, 0x0000000404084cc8, 0x0000000404800000| 6%| O| |TAMS 0x0000000404000000| PB 0x0000000404000000| Untracked
|
||||
| 7|0x0000000404800000, 0x0000000404800000, 0x0000000405000000| 0%| F| |TAMS 0x0000000404800000| PB 0x0000000404800000| Untracked
|
||||
| 8|0x0000000405000000, 0x0000000405156d20, 0x0000000405800000| 16%| S|CS|TAMS 0x0000000405000000| PB 0x0000000405000000| Complete
|
||||
| 9|0x0000000405800000, 0x0000000405800000, 0x0000000406000000| 0%| F| |TAMS 0x0000000405800000| PB 0x0000000405800000| Untracked
|
||||
| 10|0x0000000406000000, 0x0000000406800000, 0x0000000406800000|100%| S|CS|TAMS 0x0000000406000000| PB 0x0000000406000000| Complete
|
||||
| 11|0x0000000406800000, 0x0000000406800000, 0x0000000407000000| 0%| F| |TAMS 0x0000000406800000| PB 0x0000000406800000| Untracked
|
||||
| 12|0x0000000407000000, 0x0000000407000000, 0x0000000407800000| 0%| F| |TAMS 0x0000000407000000| PB 0x0000000407000000| Untracked
|
||||
| 13|0x0000000407800000, 0x0000000407800000, 0x0000000408000000| 0%| F| |TAMS 0x0000000407800000| PB 0x0000000407800000| Untracked
|
||||
| 14|0x0000000408000000, 0x0000000408000000, 0x0000000408800000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked
|
||||
| 15|0x0000000408800000, 0x0000000408800000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408800000| PB 0x0000000408800000| Untracked
|
||||
| 16|0x0000000409000000, 0x0000000409000000, 0x0000000409800000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked
|
||||
| 17|0x0000000409800000, 0x0000000409800000, 0x000000040a000000| 0%| F| |TAMS 0x0000000409800000| PB 0x0000000409800000| Untracked
|
||||
| 18|0x000000040a000000, 0x000000040a000000, 0x000000040a800000| 0%| F| |TAMS 0x000000040a000000| PB 0x000000040a000000| Untracked
|
||||
| 19|0x000000040a800000, 0x000000040a800000, 0x000000040b000000| 0%| F| |TAMS 0x000000040a800000| PB 0x000000040a800000| Untracked
|
||||
|
||||
Card table byte_map: [0x000001b7e5170000,0x000001b7e7170000] _byte_map_base: 0x000001b7e3168000
|
||||
|
||||
Marking Bits: (CMBitMap*) 0x000001b7ca9a5d60
|
||||
Bits: [0x000001b7e7170000, 0x000001b7f7130000)
|
||||
|
||||
Polling page: 0x000001b7c9030000
|
||||
|
||||
Metaspace:
|
||||
|
||||
Usage:
|
||||
Non-class: 36.96 MB used.
|
||||
Class: 3.78 MB used.
|
||||
Both: 40.74 MB used.
|
||||
|
||||
Virtual space:
|
||||
Non-class space: 64.00 MB reserved, 37.19 MB ( 58%) committed, 1 nodes.
|
||||
Class space: 1.00 GB reserved, 4.25 MB ( <1%) committed, 1 nodes.
|
||||
Both: 1.06 GB reserved, 41.44 MB ( 4%) committed.
|
||||
|
||||
Chunk freelists:
|
||||
Non-Class: 10.63 MB
|
||||
Class: 11.76 MB
|
||||
Both: 22.39 MB
|
||||
|
||||
MaxMetaspaceSize: unlimited
|
||||
CompressedClassSpaceSize: 1.00 GB
|
||||
Initial GC threshold: 21.00 MB
|
||||
Current GC threshold: 69.06 MB
|
||||
CDS: on
|
||||
- commit_granule_bytes: 65536.
|
||||
- commit_granule_words: 8192.
|
||||
- virtual_space_node_default_size: 8388608.
|
||||
- enlarge_chunks_in_place: 1.
|
||||
- use_allocation_guard: 0.
|
||||
|
||||
|
||||
Internal statistics:
|
||||
|
||||
num_allocs_failed_limit: 3.
|
||||
num_arena_births: 1880.
|
||||
num_arena_deaths: 628.
|
||||
num_vsnodes_births: 2.
|
||||
num_vsnodes_deaths: 0.
|
||||
num_space_committed: 662.
|
||||
num_space_uncommitted: 0.
|
||||
num_chunks_returned_to_freelist: 776.
|
||||
num_chunks_taken_from_freelist: 3404.
|
||||
num_chunk_merges: 165.
|
||||
num_chunk_splits: 1796.
|
||||
num_chunks_enlarged: 805.
|
||||
num_inconsistent_stats: 0.
|
||||
|
||||
CodeHeap 'non-profiled nmethods': size=119168Kb used=13399Kb max_used=13690Kb free=105768Kb
|
||||
bounds [0x000001b7da940000, 0x000001b7db6d0000, 0x000001b7e1da0000]
|
||||
CodeHeap 'profiled nmethods': size=119104Kb used=9141Kb max_used=14159Kb free=109963Kb
|
||||
bounds [0x000001b7d2da0000, 0x000001b7d3b80000, 0x000001b7da1f0000]
|
||||
CodeHeap 'non-nmethods': size=7488Kb used=2035Kb max_used=3808Kb free=5452Kb
|
||||
bounds [0x000001b7da1f0000, 0x000001b7da5c0000, 0x000001b7da940000]
|
||||
total_blobs=5995 nmethods=5017 adapters=881
|
||||
compilation: enabled
|
||||
stopped_count=0, restarted_count=0
|
||||
full_count=0
|
||||
|
||||
Compilation events (20 events):
|
||||
Event: 261790.595 Thread 0x000001b80dfc04d0 nmethod 44338 0x000001b7d2ee5a90 code [0x000001b7d2ee5c60, 0x000001b7d2ee5ed0]
|
||||
Event: 261790.595 Thread 0x000001b80dfc04d0 44340 3 java.util.RegularEnumSet$EnumSetIterator::<init> (23 bytes)
|
||||
Event: 261790.595 Thread 0x000001b80dfc04d0 nmethod 44340 0x000001b7d2ddab10 code [0x000001b7d2ddacc0, 0x000001b7d2ddaea8]
|
||||
Event: 261790.595 Thread 0x000001b80dfc2010 nmethod 44359 0x000001b7d361ea90 code [0x000001b7d361ecc0, 0x000001b7d361f7d0]
|
||||
Event: 261790.595 Thread 0x000001b80dfc04d0 44347 3 java.util.RegularEnumSet::iterator (9 bytes)
|
||||
Event: 261790.596 Thread 0x000001b80dfc04d0 nmethod 44347 0x000001b7d2ffb590 code [0x000001b7d2ffb740, 0x000001b7d2ffb9d8]
|
||||
Event: 261790.599 Thread 0x000001b80dfc2010 44363 3 java.io.ByteArrayInputStream::<init> (26 bytes)
|
||||
Event: 261790.599 Thread 0x000001b80dfc2010 nmethod 44363 0x000001b7d2dc4010 code [0x000001b7d2dc41c0, 0x000001b7d2dc4408]
|
||||
Event: 261790.600 Thread 0x000001b7e3164410 nmethod 44339 0x000001b7d304d990 code [0x000001b7d304dca0, 0x000001b7d304eb38]
|
||||
Event: 261790.603 Thread 0x000001b80dfbfe00 44365 % 4 com.sun.crypto.provider.AESCrypt::makeSessionKey @ 600 (867 bytes)
|
||||
Event: 261790.617 Thread 0x000001b7e3161d60 nmethod 44346 0x000001b7db3d7f90 code [0x000001b7db3d8260, 0x000001b7db3d94b8]
|
||||
Event: 261790.617 Thread 0x000001b7e3161d60 44364 4 java.util.HashSet::size (8 bytes)
|
||||
Event: 261790.618 Thread 0x000001b7e3161d60 nmethod 44364 0x000001b7dab2c310 code [0x000001b7dab2c4a0, 0x000001b7dab2c540]
|
||||
Event: 261790.618 Thread 0x000001b7e3161d60 44362 4 sun.util.calendar.CalendarDate::setYear (20 bytes)
|
||||
Event: 261790.619 Thread 0x000001b7e3161d60 nmethod 44362 0x000001b7dab2cc10 code [0x000001b7dab2cda0, 0x000001b7dab2ce40]
|
||||
Event: 261790.619 Thread 0x000001b7e3161d60 44351 4 sun.util.calendar.BaseCalendar$Date::hit (24 bytes)
|
||||
Event: 261790.619 Thread 0x000001b7e3161d60 nmethod 44351 0x000001b7dab39090 code [0x000001b7dab39220, 0x000001b7dab392c0]
|
||||
Event: 261790.620 Thread 0x000001b7e3161d60 44353 4 sun.util.calendar.BaseCalendar::getDayOfWeekFromFixedDate (26 bytes)
|
||||
Event: 261790.620 Thread 0x000001b7e3161d60 nmethod 44353 0x000001b7dab5c490 code [0x000001b7dab5c620, 0x000001b7dab5c6e8]
|
||||
Event: 261790.645 Thread 0x000001b80dfbfe00 nmethod 44365% 0x000001b7dadb4090 code [0x000001b7dadb42a0, 0x000001b7dadb4f00]
|
||||
|
||||
GC Heap History (20 events):
|
||||
Event: 261791.933 GC heap after
|
||||
{Heap after GC invocations=23025 (full 1778):
|
||||
garbage-first heap total 163840K, used 51125K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 1 young (8192K), 1 survivors (8192K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261793.125 GC heap before
|
||||
{Heap before GC invocations=23026 (full 1778):
|
||||
garbage-first heap total 163840K, used 116661K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 11 young (90112K), 1 survivors (8192K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261793.126 GC heap after
|
||||
{Heap after GC invocations=23027 (full 1778):
|
||||
garbage-first heap total 163840K, used 39421K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 1 young (8192K), 1 survivors (8192K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261793.598 GC heap before
|
||||
{Heap before GC invocations=23027 (full 1778):
|
||||
garbage-first heap total 163840K, used 63997K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 6 young (49152K), 1 survivors (8192K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261793.665 GC heap after
|
||||
{Heap after GC invocations=23028 (full 1779):
|
||||
garbage-first heap total 163840K, used 37258K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261793.665 GC heap before
|
||||
{Heap before GC invocations=23028 (full 1779):
|
||||
garbage-first heap total 163840K, used 37258K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261793.727 GC heap after
|
||||
{Heap after GC invocations=23029 (full 1780):
|
||||
garbage-first heap total 163840K, used 37257K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 0 young (0K), 0 survivors (0K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261805.382 GC heap before
|
||||
{Heap before GC invocations=23029 (full 1780):
|
||||
garbage-first heap total 163840K, used 127369K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 11 young (90112K), 0 survivors (0K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261805.409 GC heap after
|
||||
{Heap after GC invocations=23030 (full 1780):
|
||||
garbage-first heap total 163840K, used 48257K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261814.985 GC heap before
|
||||
{Heap before GC invocations=23031 (full 1780):
|
||||
garbage-first heap total 163840K, used 121985K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 11 young (90112K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261815.006 GC heap after
|
||||
{Heap after GC invocations=23032 (full 1780):
|
||||
garbage-first heap total 163840K, used 46952K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261823.583 GC heap before
|
||||
{Heap before GC invocations=23032 (full 1780):
|
||||
garbage-first heap total 163840K, used 112488K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 10 young (81920K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261823.602 GC heap after
|
||||
{Heap after GC invocations=23033 (full 1780):
|
||||
garbage-first heap total 163840K, used 45871K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261833.371 GC heap before
|
||||
{Heap before GC invocations=23033 (full 1780):
|
||||
garbage-first heap total 163840K, used 119599K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 11 young (90112K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261833.392 GC heap after
|
||||
{Heap after GC invocations=23034 (full 1780):
|
||||
garbage-first heap total 163840K, used 46901K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261842.985 GC heap before
|
||||
{Heap before GC invocations=23034 (full 1780):
|
||||
garbage-first heap total 163840K, used 120629K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 11 young (90112K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261843.006 GC heap after
|
||||
{Heap after GC invocations=23035 (full 1780):
|
||||
garbage-first heap total 163840K, used 47317K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261852.784 GC heap before
|
||||
{Heap before GC invocations=23035 (full 1780):
|
||||
garbage-first heap total 163840K, used 121045K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 11 young (90112K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261852.806 GC heap after
|
||||
{Heap after GC invocations=23036 (full 1780):
|
||||
garbage-first heap total 163840K, used 46796K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 2 young (16384K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
Event: 261862.583 GC heap before
|
||||
{Heap before GC invocations=23037 (full 1780):
|
||||
garbage-first heap total 163840K, used 120524K [0x0000000401000000, 0x0000000800000000)
|
||||
region size 8192K, 11 young (90112K), 2 survivors (16384K)
|
||||
Metaspace used 41717K, committed 42432K, reserved 1114112K
|
||||
class space used 3871K, committed 4352K, reserved 1048576K
|
||||
}
|
||||
|
||||
Dll operation events (15 events):
|
||||
Event: 0.009 Loaded shared library C:\Program Files\Java\jdk-21\bin\java.dll
|
||||
Event: 0.058 Loaded shared library C:\Program Files\Java\jdk-21\bin\jsvml.dll
|
||||
Event: 0.081 Loaded shared library C:\Program Files\Java\jdk-21\bin\net.dll
|
||||
Event: 0.084 Loaded shared library C:\Program Files\Java\jdk-21\bin\nio.dll
|
||||
Event: 0.103 Loaded shared library C:\Program Files\Java\jdk-21\bin\zip.dll
|
||||
Event: 0.372 Loaded shared library C:\Program Files\Java\jdk-21\bin\jimage.dll
|
||||
Event: 0.843 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna10711444073747312469.dll
|
||||
Event: 1.628 Loaded shared library C:\Program Files\Java\jdk-21\bin\verify.dll
|
||||
Event: 91.332 Loaded shared library C:\Program Files\Java\jdk-21\bin\awt.dll
|
||||
Event: 92.065 Loaded shared library C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
|
||||
Event: 92.372 Loaded shared library C:\Program Files\Java\jdk-21\bin\freetype.dll
|
||||
Event: 92.373 Loaded shared library C:\Program Files\Java\jdk-21\bin\fontmanager.dll
|
||||
Event: 92.448 Loaded shared library C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-673928535075000.dll
|
||||
Event: 95.858 Loaded shared library C:\Program Files\Java\jdk-21\bin\extnet.dll
|
||||
Event: 20948.875 Loaded shared library C:\Program Files\Java\jdk-21\bin\javajpeg.dll
|
||||
|
||||
Deoptimization events (20 events):
|
||||
Event: 259863.390 Thread 0x000001b7ffefa640 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001b7daa9b8c4 relative=0x0000000000000104
|
||||
Event: 259863.390 Thread 0x000001b7ffefa640 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001b7daa9b8c4 method=java.util.HashMap$TreeNode.find(ILjava/lang/Object;Ljava/lang/Class;)Ljava/util/HashMap$TreeNode; @ 26 c2
|
||||
Event: 259863.390 Thread 0x000001b7ffefa640 DEOPT PACKING pc=0x000001b7daa9b8c4 sp=0x00000023049fe910
|
||||
Event: 259863.390 Thread 0x000001b7ffefa640 DEOPT UNPACKING pc=0x000001b7da2446a2 sp=0x00000023049fe870 mode 2
|
||||
Event: 261161.808 Thread 0x000001b7ffefa640 Uncommon trap: trap_request=0xffffffbe fr.pc=0x000001b7db3d914c relative=0x0000000000000aac
|
||||
Event: 261161.808 Thread 0x000001b7ffefa640 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x000001b7db3d914c method=sun.security.ssl.ProtocolVersion.toStringArray(Ljava/util/List;)[Ljava/lang/String; @ 38 c2
|
||||
Event: 261161.808 Thread 0x000001b7ffefa640 DEOPT PACKING pc=0x000001b7db3d914c sp=0x00000023049fd620
|
||||
Event: 261161.808 Thread 0x000001b7ffefa640 DEOPT UNPACKING pc=0x000001b7da2446a2 sp=0x00000023049fd5d8 mode 2
|
||||
Event: 261161.808 Thread 0x000001b7ffefa640 Uncommon trap: trap_request=0xffffffbe fr.pc=0x000001b7db3d914c relative=0x0000000000000aac
|
||||
Event: 261161.808 Thread 0x000001b7ffefa640 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x000001b7db3d914c method=sun.security.ssl.ProtocolVersion.toStringArray(Ljava/util/List;)[Ljava/lang/String; @ 38 c2
|
||||
Event: 261161.808 Thread 0x000001b7ffefa640 DEOPT PACKING pc=0x000001b7db3d914c sp=0x00000023049fd550
|
||||
Event: 261161.809 Thread 0x000001b7ffefa640 DEOPT UNPACKING pc=0x000001b7da2446a2 sp=0x00000023049fd508 mode 2
|
||||
Event: 261453.957 Thread 0x000001b8074a8920 Uncommon trap: trap_request=0xffffffbe fr.pc=0x000001b7db3d914c relative=0x0000000000000aac
|
||||
Event: 261453.957 Thread 0x000001b8074a8920 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x000001b7db3d914c method=sun.security.ssl.ProtocolVersion.toStringArray(Ljava/util/List;)[Ljava/lang/String; @ 38 c2
|
||||
Event: 261453.957 Thread 0x000001b8074a8920 DEOPT PACKING pc=0x000001b7db3d914c sp=0x00000023050fd670
|
||||
Event: 261453.957 Thread 0x000001b8074a8920 DEOPT UNPACKING pc=0x000001b7da2446a2 sp=0x00000023050fd628 mode 2
|
||||
Event: 261453.958 Thread 0x000001b8074a8920 Uncommon trap: trap_request=0xffffffbe fr.pc=0x000001b7db3d914c relative=0x0000000000000aac
|
||||
Event: 261453.958 Thread 0x000001b8074a8920 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x000001b7db3d914c method=sun.security.ssl.ProtocolVersion.toStringArray(Ljava/util/List;)[Ljava/lang/String; @ 38 c2
|
||||
Event: 261453.958 Thread 0x000001b8074a8920 DEOPT PACKING pc=0x000001b7db3d914c sp=0x00000023050fd5a0
|
||||
Event: 261453.958 Thread 0x000001b8074a8920 DEOPT UNPACKING pc=0x000001b7da2446a2 sp=0x00000023050fd558 mode 2
|
||||
|
||||
Classes loaded (20 events):
|
||||
Event: 128975.988 Loading class sun/awt/ModalExclude done
|
||||
Event: 128975.989 Loading class javax/swing/JWindow
|
||||
Event: 128975.989 Loading class javax/swing/JWindow done
|
||||
Event: 128975.990 Loading class javax/swing/Popup$HeavyWeightWindow done
|
||||
Event: 139827.814 Loading class sun/awt/windows/WComponentPeer$1
|
||||
Event: 139827.814 Loading class sun/awt/windows/WComponentPeer$1 done
|
||||
Event: 227946.627 Loading class javax/crypto/AEADBadTagException
|
||||
Event: 227946.629 Loading class javax/crypto/BadPaddingException
|
||||
Event: 227946.629 Loading class javax/crypto/BadPaddingException done
|
||||
Event: 227946.629 Loading class javax/crypto/AEADBadTagException done
|
||||
Event: 227946.629 Loading class javax/net/ssl/SSLHandshakeException
|
||||
Event: 227946.631 Loading class javax/net/ssl/SSLHandshakeException done
|
||||
Event: 227946.709 Loading class java/lang/Throwable$WrappedPrintWriter
|
||||
Event: 227946.710 Loading class java/lang/Throwable$PrintStreamOrWriter
|
||||
Event: 227946.710 Loading class java/lang/Throwable$PrintStreamOrWriter done
|
||||
Event: 227946.710 Loading class java/lang/Throwable$WrappedPrintWriter done
|
||||
Event: 229122.343 Loading class javax/swing/RepaintManager$DoubleBufferInfo
|
||||
Event: 229122.344 Loading class javax/swing/RepaintManager$DoubleBufferInfo done
|
||||
Event: 229122.344 Loading class sun/awt/image/OffScreenImage
|
||||
Event: 229122.345 Loading class sun/awt/image/OffScreenImage done
|
||||
|
||||
Classes unloaded (20 events):
|
||||
Event: 114507.855 Thread 0x000001b7e31347a0 Unloading class 0x000001b7810aec00 'java/lang/invoke/LambdaForm$MH+0x000001b7810aec00'
|
||||
Event: 114507.855 Thread 0x000001b7e31347a0 Unloading class 0x000001b78141b400 'java/lang/invoke/LambdaForm$MH+0x000001b78141b400'
|
||||
Event: 114507.855 Thread 0x000001b7e31347a0 Unloading class 0x000001b78141b000 'java/lang/invoke/LambdaForm$MH+0x000001b78141b000'
|
||||
Event: 114507.855 Thread 0x000001b7e31347a0 Unloading class 0x000001b781451800 'java/lang/invoke/LambdaForm$MH+0x000001b781451800'
|
||||
Event: 114507.855 Thread 0x000001b7e31347a0 Unloading class 0x000001b781453400 'java/lang/invoke/LambdaForm$MH+0x000001b781453400'
|
||||
Event: 120651.344 Thread 0x000001b7e31347a0 Unloading class 0x000001b7812a1400 'java/lang/invoke/LambdaForm$MH+0x000001b7812a1400'
|
||||
Event: 129341.032 Thread 0x000001b7e31347a0 Unloading class 0x000001b7810b9800 'java/lang/invoke/LambdaForm$MH+0x000001b7810b9800'
|
||||
Event: 129341.032 Thread 0x000001b7e31347a0 Unloading class 0x000001b78139f400 'java/lang/invoke/LambdaForm$BMH+0x000001b78139f400'
|
||||
Event: 129341.032 Thread 0x000001b7e31347a0 Unloading class 0x000001b78139f000 'java/lang/invoke/LambdaForm$MH+0x000001b78139f000'
|
||||
Event: 140768.216 Thread 0x000001b7e31347a0 Unloading class 0x000001b7812a1400 'java/lang/invoke/LambdaForm$MH+0x000001b7812a1400'
|
||||
Event: 148119.810 Thread 0x000001b7e31347a0 Unloading class 0x000001b781451800 'java/lang/invoke/LambdaForm$BMH+0x000001b781451800'
|
||||
Event: 156674.771 Thread 0x000001b7e31347a0 Unloading class 0x000001b781453400 'java/lang/invoke/LambdaForm$MH+0x000001b781453400'
|
||||
Event: 156674.771 Thread 0x000001b7e31347a0 Unloading class 0x000001b7810aec00 'java/lang/invoke/LambdaForm$MH+0x000001b7810aec00'
|
||||
Event: 182653.825 Thread 0x000001b7e31347a0 Unloading class 0x000001b781451800 'java/lang/invoke/LambdaForm$MH+0x000001b781451800'
|
||||
Event: 191365.081 Thread 0x000001b7e31347a0 Unloading class 0x000001b7812a1400 'java/lang/invoke/LambdaForm$MH+0x000001b7812a1400'
|
||||
Event: 191365.081 Thread 0x000001b7e31347a0 Unloading class 0x000001b7810aec00 'java/lang/invoke/LambdaForm$BMH+0x000001b7810aec00'
|
||||
Event: 191365.081 Thread 0x000001b7e31347a0 Unloading class 0x000001b781453400 'java/lang/invoke/LambdaForm$MH+0x000001b781453400'
|
||||
Event: 214241.599 Thread 0x000001b7e31347a0 Unloading class 0x000001b781453400 'java/lang/invoke/LambdaForm$BMH+0x000001b781453400'
|
||||
Event: 242960.542 Thread 0x000001b7e31347a0 Unloading class 0x000001b781451800 'java/lang/invoke/LambdaForm$MH+0x000001b781451800'
|
||||
Event: 242960.542 Thread 0x000001b7e31347a0 Unloading class 0x000001b7810aec00 'java/lang/invoke/LambdaForm$MH+0x000001b7810aec00'
|
||||
|
||||
Classes redefined (0 events):
|
||||
No events
|
||||
|
||||
Internal exceptions (20 events):
|
||||
Event: 259485.457 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a8204d0}> (0x000000040a8204d0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 259572.421 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040901be58}> (0x000000040901be58)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 259670.601 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81d360}> (0x000000040a81d360)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 259813.243 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c340}> (0x000000040a81c340)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 259863.361 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81bf70}> (0x000000040a81bf70)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260002.906 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81e6b8}> (0x000000040a81e6b8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260144.843 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a8234a8}> (0x000000040a8234a8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260263.631 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81bad0}> (0x000000040a81bad0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260350.018 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a818768}> (0x000000040a818768)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260509.818 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a8238c8}> (0x000000040a8238c8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260635.447 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81bef8}> (0x000000040a81bef8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260746.139 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a818768}> (0x000000040a818768)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 260912.702 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81bfa8}> (0x000000040a81bfa8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 261168.791 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81c910}> (0x000000040a81c910)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 261205.839 Thread 0x000001b8074a8fb0 Exception <a 'java/io/IOException'{0x0000000407000068}> (0x0000000407000068)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 261461.262 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81beb0}> (0x000000040a81beb0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 261790.579 Thread 0x000001b807840030 Exception <a 'java/io/IOException'{0x000000040a86d8c8}> (0x000000040a86d8c8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 261790.590 Thread 0x000001b80783e5f0 Exception <a 'java/io/IOException'{0x0000000406b2dd58}> (0x0000000406b2dd58)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 261790.602 Thread 0x000001b807840030 Exception <a 'java/io/IOException'{0x000000040a86f3b0}> (0x000000040a86f3b0)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
Event: 261793.728 Thread 0x000001b7ffefa640 Exception <a 'sun/nio/fs/WindowsException'{0x000000040a81beb8}> (0x000000040a81beb8)
|
||||
thrown [s\open\src\hotspot\share\prims\jni.cpp, line 520]
|
||||
|
||||
ZGC Phase Switch (0 events):
|
||||
No events
|
||||
|
||||
VM Operations (20 events):
|
||||
Event: 261805.460 Executing VM operation: G1PauseCleanup done
|
||||
Event: 261814.985 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 261815.006 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 261823.217 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation)
|
||||
Event: 261823.217 Executing VM operation: HandshakeAllThreads (HandshakeForDeflation) done
|
||||
Event: 261823.217 Executing VM operation: RendezvousGCThreads
|
||||
Event: 261823.217 Executing VM operation: RendezvousGCThreads done
|
||||
Event: 261823.583 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 261823.602 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 261833.371 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 261833.392 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 261842.985 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 261843.007 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 261852.784 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
Event: 261852.806 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
|
||||
Event: 261852.861 Executing VM operation: G1PauseRemark
|
||||
Event: 261852.865 Executing VM operation: G1PauseRemark done
|
||||
Event: 261852.873 Executing VM operation: G1PauseCleanup
|
||||
Event: 261852.873 Executing VM operation: G1PauseCleanup done
|
||||
Event: 261862.583 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause)
|
||||
|
||||
Events (20 events):
|
||||
Event: 261792.292 Thread 0x000001b8074a6850 Thread added: 0x000001b8074a6850
|
||||
Event: 261792.292 Thread 0x000001b8074a9cd0 Thread added: 0x000001b8074a9cd0
|
||||
Event: 261792.292 Thread 0x000001b8074a6ee0 Thread added: 0x000001b8074a6ee0
|
||||
Event: 261792.292 Thread 0x000001b8074a2d40 Thread added: 0x000001b8074a2d40
|
||||
Event: 261793.588 Thread 0x000001b8074a8fb0 Thread exited: 0x000001b8074a8fb0
|
||||
Event: 261793.592 Thread 0x000001b8074a6850 Thread exited: 0x000001b8074a6850
|
||||
Event: 261793.593 Thread 0x000001b8074a6ee0 Thread exited: 0x000001b8074a6ee0
|
||||
Event: 261793.594 Thread 0x000001b8074a9cd0 Thread exited: 0x000001b8074a9cd0
|
||||
Event: 261793.594 Thread 0x000001b8074a2d40 Thread exited: 0x000001b8074a2d40
|
||||
Event: 261793.598 Thread 0x000001b8074a61c0 Thread exited: 0x000001b8074a61c0
|
||||
Event: 261793.700 Thread 0x000001b7e31347a0 flushing nmethod 0x000001b7d3620610
|
||||
Event: 261793.700 Thread 0x000001b7e31347a0 flushing nmethod 0x000001b7d3623910
|
||||
Event: 261793.700 Thread 0x000001b7e31347a0 flushing nmethod 0x000001b7d3930c90
|
||||
Event: 261793.731 Thread 0x000001b8074a6850 Thread added: 0x000001b8074a6850
|
||||
Event: 261795.601 Thread 0x000001b80dfc2010 Thread exited: 0x000001b80dfc2010
|
||||
Event: 261795.645 Thread 0x000001b80dfbfe00 Thread exited: 0x000001b80dfbfe00
|
||||
Event: 261800.602 Thread 0x000001b80dfc04d0 Thread exited: 0x000001b80dfc04d0
|
||||
Event: 261850.655 Thread 0x000001b807840030 Thread exited: 0x000001b807840030
|
||||
Event: 261852.006 Thread 0x000001b8074a4e10 Thread exited: 0x000001b8074a4e10
|
||||
Event: 261852.022 Thread 0x000001b80783f9a0 Thread exited: 0x000001b80783f9a0
|
||||
|
||||
|
||||
Dynamic libraries:
|
||||
0x00007ff7289e0000 - 0x00007ff7289f0000 C:\Program Files\Java\jdk-21\bin\java.exe
|
||||
0x00007ffc9edd0000 - 0x00007ffc9efe7000 C:\Windows\SYSTEM32\ntdll.dll
|
||||
0x00007ffc9e270000 - 0x00007ffc9e334000 C:\Windows\System32\KERNEL32.DLL
|
||||
0x00007ffc9c4c0000 - 0x00007ffc9c892000 C:\Windows\System32\KERNELBASE.dll
|
||||
0x00007ffc9c3a0000 - 0x00007ffc9c4b1000 C:\Windows\System32\ucrtbase.dll
|
||||
0x00007ffc98da0000 - 0x00007ffc98dbb000 C:\Program Files\Java\jdk-21\bin\VCRUNTIME140.dll
|
||||
0x00007ffc98d80000 - 0x00007ffc98d99000 C:\Program Files\Java\jdk-21\bin\jli.dll
|
||||
0x00007ffc9e5d0000 - 0x00007ffc9e681000 C:\Windows\System32\ADVAPI32.dll
|
||||
0x00007ffc9d3d0000 - 0x00007ffc9d477000 C:\Windows\System32\msvcrt.dll
|
||||
0x00007ffc9e690000 - 0x00007ffc9e738000 C:\Windows\System32\sechost.dll
|
||||
0x00007ffc9bec0000 - 0x00007ffc9bee8000 C:\Windows\System32\bcrypt.dll
|
||||
0x00007ffc9d2b0000 - 0x00007ffc9d3c4000 C:\Windows\System32\RPCRT4.dll
|
||||
0x00007ffc9cb20000 - 0x00007ffc9ccd1000 C:\Windows\System32\USER32.dll
|
||||
0x00007ffc9c050000 - 0x00007ffc9c076000 C:\Windows\System32\win32u.dll
|
||||
0x00007ffc9e1a0000 - 0x00007ffc9e1c9000 C:\Windows\System32\GDI32.dll
|
||||
0x00007ffc83400000 - 0x00007ffc8369b000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772\COMCTL32.dll
|
||||
0x00007ffc9c080000 - 0x00007ffc9c1a3000 C:\Windows\System32\gdi32full.dll
|
||||
0x00007ffc9bef0000 - 0x00007ffc9bf8a000 C:\Windows\System32\msvcp_win.dll
|
||||
0x00007ffc97b40000 - 0x00007ffc97b4a000 C:\Windows\SYSTEM32\VERSION.dll
|
||||
0x00007ffc9ca60000 - 0x00007ffc9ca91000 C:\Windows\System32\IMM32.DLL
|
||||
0x00007ffc990b0000 - 0x00007ffc990bc000 C:\Program Files\Java\jdk-21\bin\vcruntime140_1.dll
|
||||
0x00007ffc96d50000 - 0x00007ffc96dde000 C:\Program Files\Java\jdk-21\bin\msvcp140.dll
|
||||
0x00007ffc421e0000 - 0x00007ffc42efa000 C:\Program Files\Java\jdk-21\bin\server\jvm.dll
|
||||
0x00007ffc9caa0000 - 0x00007ffc9cb11000 C:\Windows\System32\WS2_32.dll
|
||||
0x00007ffc9b0a0000 - 0x00007ffc9b0ed000 C:\Windows\SYSTEM32\POWRPROF.dll
|
||||
0x00007ffc8f340000 - 0x00007ffc8f374000 C:\Windows\SYSTEM32\WINMM.dll
|
||||
0x00007ffc9af70000 - 0x00007ffc9af83000 C:\Windows\SYSTEM32\UMPDC.dll
|
||||
0x00007ffc9af90000 - 0x00007ffc9afa8000 C:\Windows\SYSTEM32\kernel.appcore.dll
|
||||
0x00007ffc98d40000 - 0x00007ffc98d4a000 C:\Program Files\Java\jdk-21\bin\jimage.dll
|
||||
0x00007ffc8e250000 - 0x00007ffc8e483000 C:\Windows\SYSTEM32\DBGHELP.DLL
|
||||
0x00007ffc9d480000 - 0x00007ffc9d813000 C:\Windows\System32\combase.dll
|
||||
0x00007ffc9e740000 - 0x00007ffc9e817000 C:\Windows\System32\OLEAUT32.dll
|
||||
0x00007ffc7a5f0000 - 0x00007ffc7a622000 C:\Windows\SYSTEM32\dbgcore.DLL
|
||||
0x00007ffc9c8a0000 - 0x00007ffc9c91b000 C:\Windows\System32\bcryptPrimitives.dll
|
||||
0x00007ffc98d20000 - 0x00007ffc98d3f000 C:\Program Files\Java\jdk-21\bin\java.dll
|
||||
0x00007ffc9d820000 - 0x00007ffc9e0c2000 C:\Windows\System32\SHELL32.dll
|
||||
0x00007ffc9c920000 - 0x00007ffc9ca5f000 C:\Windows\System32\wintypes.dll
|
||||
0x00007ffc99df0000 - 0x00007ffc9a70d000 C:\Windows\SYSTEM32\windows.storage.dll
|
||||
0x00007ffc9ebd0000 - 0x00007ffc9ecdc000 C:\Windows\System32\SHCORE.dll
|
||||
0x00007ffc9e130000 - 0x00007ffc9e199000 C:\Windows\System32\shlwapi.dll
|
||||
0x00007ffc9bdf0000 - 0x00007ffc9be1b000 C:\Windows\SYSTEM32\profapi.dll
|
||||
0x00007ffc94300000 - 0x00007ffc943d7000 C:\Program Files\Java\jdk-21\bin\jsvml.dll
|
||||
0x00007ffc98d10000 - 0x00007ffc98d20000 C:\Program Files\Java\jdk-21\bin\net.dll
|
||||
0x00007ffc97dd0000 - 0x00007ffc97efc000 C:\Windows\SYSTEM32\WINHTTP.dll
|
||||
0x00007ffc9b460000 - 0x00007ffc9b4c9000 C:\Windows\system32\mswsock.dll
|
||||
0x00007ffc98ca0000 - 0x00007ffc98cb6000 C:\Program Files\Java\jdk-21\bin\nio.dll
|
||||
0x00007ffc942e0000 - 0x00007ffc942f8000 C:\Program Files\Java\jdk-21\bin\zip.dll
|
||||
0x00007ffc9b6c0000 - 0x00007ffc9b6db000 C:\Windows\SYSTEM32\CRYPTSP.dll
|
||||
0x00007ffc9aed0000 - 0x00007ffc9af07000 C:\Windows\system32\rsaenh.dll
|
||||
0x00007ffc9b550000 - 0x00007ffc9b578000 C:\Windows\SYSTEM32\USERENV.dll
|
||||
0x00007ffc9b6b0000 - 0x00007ffc9b6bc000 C:\Windows\SYSTEM32\CRYPTBASE.dll
|
||||
0x00007ffc9a9b0000 - 0x00007ffc9a9dd000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
|
||||
0x00007ffc9cce0000 - 0x00007ffc9cce9000 C:\Windows\System32\NSI.dll
|
||||
0x00007ffc7fa70000 - 0x00007ffc7fab9000 C:\Users\Nathan\AppData\Local\Temp\jna--1968753164\jna10711444073747312469.dll
|
||||
0x00007ffc9d2a0000 - 0x00007ffc9d2a8000 C:\Windows\System32\PSAPI.DLL
|
||||
0x00007ffc98d00000 - 0x00007ffc98d10000 C:\Program Files\Java\jdk-21\bin\verify.dll
|
||||
0x00007ffc741f0000 - 0x00007ffc74207000 C:\Windows\system32\napinsp.dll
|
||||
0x00007ffc74210000 - 0x00007ffc7422b000 C:\Windows\system32\pnrpnsp.dll
|
||||
0x00007ffc9aa30000 - 0x00007ffc9ab28000 C:\Windows\SYSTEM32\DNSAPI.dll
|
||||
0x00007ffc74230000 - 0x00007ffc74241000 C:\Windows\System32\winrnr.dll
|
||||
0x00007ffc74340000 - 0x00007ffc7435f000 C:\Windows\system32\wshbth.dll
|
||||
0x00007ffc74250000 - 0x00007ffc74271000 C:\Windows\system32\nlansp_c.dll
|
||||
0x00007ffc90610000 - 0x00007ffc9061a000 C:\Windows\System32\rasadhlp.dll
|
||||
0x00007ffc97400000 - 0x00007ffc97484000 C:\Windows\System32\fwpuclnt.dll
|
||||
0x00007ffc65070000 - 0x00007ffc65440000 C:\Windows\SYSTEM32\nvcuda.dll
|
||||
0x00007ffc99550000 - 0x00007ffc99587000 C:\Windows\SYSTEM32\dxcore.dll
|
||||
0x00007ffc40110000 - 0x00007ffc421d4000 C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_d5dc244a1dfc4e1d\nvcuda64.dll
|
||||
0x00007ffc9b710000 - 0x00007ffc9b722000 C:\Windows\SYSTEM32\msasn1.dll
|
||||
0x00007ffc972e0000 - 0x00007ffc97312000 C:\Windows\SYSTEM32\cryptnet.dll
|
||||
0x00007ffc9c1b0000 - 0x00007ffc9c317000 C:\Windows\System32\CRYPT32.dll
|
||||
0x00007ffc9b780000 - 0x00007ffc9b7d0000 C:\Windows\SYSTEM32\wldp.dll
|
||||
0x00007ffc97180000 - 0x00007ffc972da000 C:\Windows\SYSTEM32\drvstore.dll
|
||||
0x00007ffc9bb80000 - 0x00007ffc9bbac000 C:\Windows\SYSTEM32\devobj.dll
|
||||
0x00007ffc9bbb0000 - 0x00007ffc9bbfe000 C:\Windows\SYSTEM32\cfgmgr32.dll
|
||||
0x00007ffc89920000 - 0x00007ffc89ea1000 C:\Windows\SYSTEM32\nvapi64.dll
|
||||
0x00007ffc9ccf0000 - 0x00007ffc9d164000 C:\Windows\System32\SETUPAPI.dll
|
||||
0x00007ffc9e390000 - 0x00007ffc9e530000 C:\Windows\System32\ole32.dll
|
||||
0x00007ffc7edf0000 - 0x00007ffc7ee85000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_d5dc244a1dfc4e1d\nvdxgdmal64.dll
|
||||
0x00007ffc7b380000 - 0x00007ffc7b4b5000 C:\Windows\SYSTEM32\nvml.dll
|
||||
0x00007ffc3f240000 - 0x00007ffc40102000 C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_d5dc244a1dfc4e1d\nvml.dll
|
||||
0x00007ffc74a20000 - 0x00007ffc74baf000 C:\Program Files\Java\jdk-21\bin\awt.dll
|
||||
0x00007ffc96960000 - 0x00007ffc969f7000 C:\Windows\SYSTEM32\apphelp.dll
|
||||
0x00007ffc996a0000 - 0x00007ffc996ce000 C:\Windows\system32\DWMAPI.DLL
|
||||
0x00007ffc99410000 - 0x00007ffc994c4000 C:\Windows\system32\uxtheme.dll
|
||||
0x00007ffc7dc30000 - 0x00007ffc7dd30000 C:\Windows\system32\opengl32.dll
|
||||
0x00007ffc942b0000 - 0x00007ffc942dd000 C:\Windows\SYSTEM32\GLU32.dll
|
||||
0x00007ffc9e820000 - 0x00007ffc9e980000 C:\Windows\System32\MSCTF.dll
|
||||
0x00007ffc9c320000 - 0x00007ffc9c39c000 C:\Windows\System32\wintrust.dll
|
||||
0x00007ffc9d170000 - 0x00007ffc9d18f000 C:\Windows\System32\imagehlp.dll
|
||||
0x00007ffc3c320000 - 0x00007ffc3c634000 C:\Windows\system32\nvspcap64.dll
|
||||
0x00007ffc9b0f0000 - 0x00007ffc9b124000 C:\Windows\SYSTEM32\ntmarta.dll
|
||||
0x00007ffc9b4f0000 - 0x00007ffc9b516000 C:\Windows\SYSTEM32\gpapi.dll
|
||||
0x00007ffc3c160000 - 0x00007ffc3c314000 C:\Windows\System32\DriverStore\FileRepository\nv_dispsi.inf_amd64_d5dc244a1dfc4e1d\nvppex.dll
|
||||
0x00007ffc98c80000 - 0x00007ffc98c8e000 C:\Program Files\Java\jdk-21\bin\sunmscapi.dll
|
||||
0x00007ffc9b870000 - 0x00007ffc9b89d000 C:\Windows\SYSTEM32\ncrypt.dll
|
||||
0x00007ffc9b830000 - 0x00007ffc9b867000 C:\Windows\SYSTEM32\NTASN1.dll
|
||||
0x00007ffc7f810000 - 0x00007ffc7f897000 C:\Program Files\Java\jdk-21\bin\freetype.dll
|
||||
0x00007ffc7db30000 - 0x00007ffc7dc11000 C:\Program Files\Java\jdk-21\bin\fontmanager.dll
|
||||
0x00007ffc80580000 - 0x00007ffc80586000 C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp\flatlaf-windows-x86_64-673928535075000.dll
|
||||
0x00007ffc96d40000 - 0x00007ffc96d47000 C:\Program Files\Java\jdk-21\bin\jawt.dll
|
||||
0x00007ffc83210000 - 0x00007ffc832c3000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d\comctl32.dll
|
||||
0x00007ffc9ece0000 - 0x00007ffc9ed90000 C:\Windows\System32\clbcatq.dll
|
||||
0x00007ffc97970000 - 0x00007ffc97a79000 C:\Windows\SYSTEM32\PROPSYS.dll
|
||||
0x00007ffc7fcc0000 - 0x00007ffc7fcda000 C:\Windows\system32\NetworkExplorer.dll
|
||||
0x00007ffc7ba90000 - 0x00007ffc7baae000 C:\Windows\SYSTEM32\MPR.dll
|
||||
0x00007ffc74310000 - 0x00007ffc7433b000 C:\Windows\System32\p9np.dll
|
||||
0x00007ffc743b0000 - 0x00007ffc743bc000 C:\Windows\System32\drprov.dll
|
||||
0x00007ffc74390000 - 0x00007ffc743a9000 C:\Windows\System32\ntlanman.dll
|
||||
0x00007ffc74370000 - 0x00007ffc7438f000 C:\Windows\System32\davclnt.dll
|
||||
0x00007ffc9ab30000 - 0x00007ffc9ab9c000 C:\Windows\System32\WINSTA.dll
|
||||
0x00007ffc97840000 - 0x00007ffc9785a000 C:\Windows\System32\wkscli.dll
|
||||
0x00007ffc7aa70000 - 0x00007ffc7aa82000 C:\Windows\SYSTEM32\cscapi.dll
|
||||
0x00007ffc9a960000 - 0x00007ffc9a96c000 C:\Windows\System32\netutils.dll
|
||||
0x00007ffc786a0000 - 0x00007ffc786fe000 C:\Windows\System32\dlnashext.dll
|
||||
0x00007ffc6b770000 - 0x00007ffc6b7d9000 C:\Windows\System32\PlayToDevice.dll
|
||||
0x00007ffc946e0000 - 0x00007ffc94701000 C:\Windows\System32\DevDispItemProvider.dll
|
||||
0x00007ffc94760000 - 0x00007ffc947fc000 C:\Windows\System32\MMDevApi.dll
|
||||
0x00007ffbe29a0000 - 0x00007ffbe29f6000 C:\Windows\SYSTEM32\rdpendp.dll
|
||||
0x00007ffc81f40000 - 0x00007ffc82001000 C:\Windows\SYSTEM32\TextShaping.dll
|
||||
0x00007ffc9ad10000 - 0x00007ffc9ad24000 C:\Windows\SYSTEM32\WTSAPI32.dll
|
||||
0x00007ffc62b80000 - 0x00007ffc62c2a000 C:\Windows\system32\wpdshext.dll
|
||||
0x00007ffc836a0000 - 0x00007ffc83861000 C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5547_none_57fb3de0ce17d140\gdiplus.dll
|
||||
0x00007ffc97b70000 - 0x00007ffc97c0e000 C:\Windows\System32\PortableDeviceApi.dll
|
||||
0x00007ffc66ba0000 - 0x00007ffc66bd1000 C:\Windows\System32\PortableDeviceTypes.dll
|
||||
0x00007ffc79bc0000 - 0x00007ffc79bf7000 C:\Windows\System32\EhStorShell.dll
|
||||
0x00007ffc63920000 - 0x00007ffc63944000 C:\Windows\System32\EhStorAPI.dll
|
||||
0x00007ffc99220000 - 0x00007ffc993d1000 C:\Windows\SYSTEM32\WindowsCodecs.dll
|
||||
0x00007ffc6cdd0000 - 0x00007ffc6ce3a000 C:\Windows\System32\thumbcache.dll
|
||||
|
||||
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
|
||||
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Java\jdk-21\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772;C:\Program Files\Java\jdk-21\bin\server;C:\Users\Nathan\AppData\Local\Temp\jna--1968753164;C:\Windows\system32\DriverStore\FileRepository\nv_dispsi.inf_amd64_d5dc244a1dfc4e1d;C:\Users\Nathan\AppData\Local\Temp\flatlaf.temp;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.22621.5413_none_b43a8de9638d9f5d;C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.22621.5547_none_57fb3de0ce17d140;C:\Windows\system32\wbem;C:\ProgramData\Microsoft\Windows Defender\Platform\4.18.25060.7-0
|
||||
|
||||
VM Arguments:
|
||||
java_command: sheepit-client-7.25182.0.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir S:\SheepIt\cache0
|
||||
java_class_path (initial): sheepit-client-7.25182.0.jar
|
||||
Launcher Type: SUN_STANDARD
|
||||
|
||||
[Global flags]
|
||||
intx CICompilerCount = 12 {product} {ergonomic}
|
||||
uint ConcGCThreads = 4 {product} {ergonomic}
|
||||
uint G1ConcRefinementThreads = 15 {product} {ergonomic}
|
||||
size_t G1HeapRegionSize = 8388608 {product} {ergonomic}
|
||||
uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
|
||||
size_t InitialHeapSize = 1073741824 {product} {ergonomic}
|
||||
size_t MarkStackSize = 4194304 {product} {ergonomic}
|
||||
size_t MaxHeapSize = 17163091968 {product} {ergonomic}
|
||||
size_t MaxNewSize = 10292822016 {product} {ergonomic}
|
||||
size_t MinHeapDeltaBytes = 8388608 {product} {ergonomic}
|
||||
size_t MinHeapSize = 8388608 {product} {ergonomic}
|
||||
uintx NonNMethodCodeHeapSize = 7602480 {pd product} {ergonomic}
|
||||
uintx NonProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
|
||||
uintx ProfiledCodeHeapSize = 122027880 {pd product} {ergonomic}
|
||||
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
|
||||
bool SegmentedCodeCache = true {product} {ergonomic}
|
||||
size_t SoftMaxHeapSize = 17163091968 {manageable} {ergonomic}
|
||||
bool UseCompressedOops = true {product lp64_product} {ergonomic}
|
||||
bool UseG1GC = true {product} {ergonomic}
|
||||
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
|
||||
|
||||
Logging:
|
||||
Log output configuration:
|
||||
#0: stdout all=warning uptime,level,tags foldmultilines=false
|
||||
#1: stderr all=off uptime,level,tags foldmultilines=false
|
||||
|
||||
Environment Variables:
|
||||
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Program Files\Tailscale\;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Program Files\Common Files\Oracle\Java\javapath;C:\Python313\Scripts\;C:\Python313\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA app\NvDLISR;C:\ProgramData\chocolatey\bin;C:\Users\Nathan\AppData\Local\Microsoft\WindowsApps;C:\Users\Nathan\AppData\Local\Programs\Ollama;;C:\Program Files\Blender Foundation\Blender 4.5
|
||||
USERNAME=Nathan
|
||||
OS=Windows_NT
|
||||
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
|
||||
TMP=C:\Users\Nathan\AppData\Local\Temp
|
||||
TEMP=C:\Users\Nathan\AppData\Local\Temp
|
||||
|
||||
|
||||
|
||||
|
||||
Periodic native trim disabled
|
||||
|
||||
--------------- S Y S T E M ---------------
|
||||
|
||||
OS:
|
||||
Windows 11 , 64 bit Build 22621 (10.0.22621.5415)
|
||||
OS uptime: 3 days 19:26 hours
|
||||
|
||||
CPU: total 20 (initial active 20) (10 cores per cpu, 2 threads per core) family 6 model 79 stepping 1 microcode 0xb000038, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, rdtscp, f16c
|
||||
Processor Information for all 20 processors :
|
||||
Max Mhz: 2201, Current Mhz: 2201, Mhz Limit: 2201
|
||||
|
||||
Memory: 4k page, system-wide physical 65446M (1293M free)
|
||||
TotalPageFile size 125051M (AvailPageFile size 250M)
|
||||
current process WorkingSet (physical memory assigned to process): 269M, peak: 1348M
|
||||
current process commit charge ("private bytes"): 490M, peak: 1540M
|
||||
|
||||
vm_info: Java HotSpot(TM) 64-Bit Server VM (21.0.7+8-LTS-245) for windows-amd64 JRE (21.0.7+8-LTS-245), built on 2025-02-21T05:11:27Z by "mach5one" with MS VC++ 17.6 (VS2022)
|
||||
|
||||
END.
|
||||
BIN
sheepit-autoupdate.jar
Normal file
BIN
sheepit-autoupdate.jar
Normal file
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "E:\SheepIt\cache0" -shadow-dir "E:\SheepIt\shadow"
|
||||
java -jar sheepit-autoupdate.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_0 -cache-dir "E:\SheepIt\cache0"
|
||||
@@ -1 +1 @@
|
||||
java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "E:\SheepIt\cache1" -shadow-dir "E:\SheepIt\shadow"
|
||||
java -jar sheepit-autoupdate.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_1 -cache-dir "E:\SheepIt\cache1"
|
||||
@@ -1 +1 @@
|
||||
java -jar sheepit-client-all.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "E:\SheepIt\cache2" -shadow-dir "E:\SheepIt\shadow"
|
||||
java -jar sheepit-autoupdate.jar -login RaincloudTheDragon -password HmTNTrbF*zC5E7H -gpu OPTIX_2 -cache-dir "E:\SheepIt\cache2"
|
||||
Reference in New Issue
Block a user