-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.log
1792 lines (1575 loc) · 100 KB
/
error.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
RimWorld by Ludeon Studios by Ludeon Studios [version: Unity 2019.4.30f1_e8c891080a1f]
Unknown caused an Illegal Instruction (0xc000001d)
in module Unknown at 0033:005413e0.
Error occurred at 2023-11-07_233240.
H:\0SteamLibrary\steamapps\common\RimWorld\RimWorldWin64.exe, run by JasonPanic.
67% physical memory in use.
32682 MB physical memory [10469 MB free].
20463 MB process peak paging file [20432 MB used].
14975 MB process peak working set [14929 MB used].
System Commit Total/Limit/Peak: 31793MB/35754MB/33169MB
System Physical Total/Available: 32682MB/10469MB
System Process Count: 82
System Thread Count: 1724
System Handle Count: 53959
Disk space data for 'C:\Users\JASONP~1\AppData\Local\Temp\Ludeon Studios\RimWorld by Ludeon Studios\Crashes\Crash_2023-11-08_053152530\': 16733360128 bytes free of 150044180480 total.
Context:
RDI: 0x0000000000000000 RSI: 0x000002943f0d34e0 RAX: 0x00000299005413e0
RBX: 0x000000002b525a14 RCX: 0x000000da8fbcb9e8 RDX: 0x000000da8fbcb9d0
RIP: 0x00000299005413e0 RBP: 0x000000da8fbcba00 SegCs: 0x000000da00000033
EFlags: 0x0000000000010207 RSP: 0x000000da8fbcb998 SegSs: 0x000000da0000002b
R8: 0x0000000000000000 R9: 0x4079999a000000f4 R10: 0x00000299014240f0
R11: 0x0000029900745620 R12: 0x0000000000000001 R13: 0x00000293ab03fb10
R14: 0x0000000000000001 R15: 0x0000000000000000
Bytes at CS:EIP:
f0 48 89 45 d0 48 89 01 48 8d 64 24 00 90 49 bb
Mono DLL loaded successfully at 'H:\0SteamLibrary\steamapps\common\RimWorld\MonoBleedingEdge\EmbedRuntime\mono-2.0-bdwgc.dll'.
Stack Trace of Crashed Thread 7488:
0x00000299005413E0 (PerformanceFish) CacheValue`1.FisheryConstructorFunc_CacheValue`10()
0x000002990074466B (PerformanceFish) PerformanceFish.System.ValueTypeEqualityComparer`1.Equals()
0x0000029900731DDD (mscorlib) System.Collections.Generic.Dictionary`2.FindEntry()
0x0000029900731B63 (mscorlib) System.Collections.Generic.Dictionary`2.TryGetValue()
0x00000299007317C3 (VanillaPsycastsExpanded) VanillaPsycastsExpanded.GenRadialCached.RadialDistinctThingsAround()
0x000002990072E2AB (VanillaPsycastsExpanded) VanillaPsycastsExpanded.StatPart_NearbyFoci.AllFociNearby()
0x000002990072DDAB (VanillaPsycastsExpanded) VanillaPsycastsExpanded.StatPart_NearbyFoci.TransformValue()
0x00000293FAE7D2BD (Assembly-CSharp) RimWorld.StatWorker.RimWorld.StatWorker.FinalizeValue_Patch1()
0x00000297315D4989 (Assembly-CSharp) RimWorld.StatWorker.RimWorld.StatWorker.GetValue_Patch0()
0x00000298C949987B (Assembly-CSharp) RimWorld.StatWorker.GetValue()
0x00000298C9499793 (Assembly-CSharp) RimWorld.StatExtension.GetStatValueForPawn()
0x0000029901F076A3 (Assembly-CSharp) <AllMeditationSpotCandidates>d__6.MoveNext()
0x0000029A27644E4A (Assembly-CSharp) RimWorld.MeditationUtility.FindMeditationSpot()
0x0000029A27643A8B (Assembly-CSharp) RimWorld.MeditationUtility.GetMeditationJob()
0x0000029A276439C3 (IntegratedGenes) IntegratedGenes.JobGiver_FillMeditationNeed.TryGiveJob()
0x000002990075D25E (Assembly-CSharp) Verse.AI.ThinkNode_JobGiver.TryIssueJobPackage()
0x0000029900704825 (Assembly-CSharp) Verse.AI.ThinkNode_Priority.TryIssueJobPackage()
0x00000299020B2085 (Assembly-CSharp) Verse.AI.ThinkNode_PrioritySorter.TryIssueJobPackage()
0x0000029900704825 (Assembly-CSharp) Verse.AI.ThinkNode_Priority.TryIssueJobPackage()
0x000002990075D803 (Assembly-CSharp) Verse.AI.ThinkNode_Tagger.TryIssueJobPackage()
0x0000029900704D5A (Assembly-CSharp) Verse.AI.ThinkNode_Subtree.TryIssueJobPackage()
0x0000029900704825 (Assembly-CSharp) Verse.AI.ThinkNode_Priority.TryIssueJobPackage()
0x0000029900704E4B (Assembly-CSharp) Verse.AI.ThinkNode_Conditional.TryIssueJobPackage()
0x0000029900704825 (Assembly-CSharp) Verse.AI.ThinkNode_Priority.TryIssueJobPackage()
0x00000299020A273F (Assembly-CSharp) Verse.AI.Pawn_JobTracker.DetermineNextJob()
0x00000299020E1683 (Assembly-CSharp) Verse.AI.Pawn_JobTracker.TryFindAndStartJob()
0x00000293FC39A643 (Assembly-CSharp) Verse.AI.Pawn_JobTracker.Verse.AI.Pawn_JobTracker.EndCurrentJob_Patch5()
0x00000293FC736AAB (Assembly-CSharp) Verse.AI.JobDriver.Verse.AI.JobDriver.EndJobWith_Patch1()
0x0000029900709C1B (Assembly-CSharp) Verse.AI.JobDriver.CheckCurrentToilEndOrFail()
0x0000029831D5E21B (Assembly-CSharp) Verse.AI.JobDriver.Verse.AI.JobDriver.DriverTick_Patch0()
0x0000029733CCF703 (Assembly-CSharp) Verse.AI.Pawn_JobTracker.Verse.AI.Pawn_JobTracker.JobTrackerTick_Patch0()
0x000002982DEC2F30 (Assembly-CSharp) Verse.Pawn.Verse.Pawn.Tick_Patch1()
0x00000299006F2250 (Assembly-CSharp) Verse.TickList.Tick()
0x00000297315D5283 (Assembly-CSharp) Verse.TickManager.Verse.TickManager.DoSingleTick_Patch6()
0x0000029901D9E63B (Assembly-CSharp) Verse.TickManager.TickManagerUpdate()
0x0000029829DDF73B (Assembly-CSharp) Verse.Game.Verse.Game.UpdatePlay_Patch7()
0x000002983A329CA3 (Assembly-CSharp) Verse.Root_Play.Update()
0x00000293A418AB80 (mscorlib) System.Object.runtime_invoke_void__this__()
0x00007FF936D7E270 (mono-2.0-bdwgc) mono_get_runtime_build_info
0x00007FF936D02AE2 (mono-2.0-bdwgc) mono_perfcounters_init
0x00007FF936D0BB3F (mono-2.0-bdwgc) mono_runtime_invoke
0x00007FF93820606D (UnityPlayer) UnityMain
0x00007FF938203443 (UnityPlayer) UnityMain
0x00007FF9381EC603 (UnityPlayer) UnityMain
0x00007FF9381EC6BD (UnityPlayer) UnityMain
0x00007FF937F78110 (UnityPlayer) UnityMain
0x00007FF9380C63C7 (UnityPlayer) UnityMain
0x00007FF9380C6463 (UnityPlayer) UnityMain
0x00007FF9380C88BC (UnityPlayer) UnityMain
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF937E7751E)
0x00007FF937E7751E (UnityPlayer) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF937E7627A)
0x00007FF937E7627A (UnityPlayer) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF937E7A32C)
0x00007FF937E7A32C (UnityPlayer) (function-name not available)
0x00007FF937E7DE1B (UnityPlayer) UnityMain
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF74C4C11F2)
0x00007FF74C4C11F2 (RimWorldWin64) (function-name not available)
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Stacks for Running Threads:
Call Stack for Thread 7372:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF936C75E7F (mono-2.0-bdwgc) mono_conc_hashtable_remove
0x00007FF936D64EED (mono-2.0-bdwgc) mono_gc_reference_queue_new
0x00007FF936D63CC5 (mono-2.0-bdwgc) mono_callspec_parse
0x00007FF936D26BD8 (mono-2.0-bdwgc) mono_unity_managed_callstack
0x00007FF936D26966 (mono-2.0-bdwgc) mono_unity_managed_callstack
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6768:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6948:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 3292:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6492:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 8032:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7636:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1652:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7760:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7744:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 4272:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7412:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7860:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 5768:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6424:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7044:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 2444:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 2400:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6844:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7624:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 620:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 8164:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6532:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 196:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7388:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 992:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 5528:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6296:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1532:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1456:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1056:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 3188:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF938081680 (UnityPlayer) UnityMain
0x00007FF938082750 (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7216:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF93816FF2A (UnityPlayer) UnityMain
0x00007FF9380C55AC (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7680:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF937F77EBD (UnityPlayer) UnityMain
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6916:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7948:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7988:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7676:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 4636:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1760:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 8136:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7716:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 4572:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7668:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 3112:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 8028:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 3056:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6920:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1420:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6936:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 3096:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1168:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 8148:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF9748EE907)
0x00007FF9748EE907 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF9748EE819)
0x00007FF9748EE819 (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6228:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9749DCA55 (amdxx64) boost::serialization::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >
0x00007FF9749DC930 (amdxx64) boost::serialization::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >
0x00007FF9749DCB8F (amdxx64) boost::serialization::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >
0x00007FF9749DCD39 (amdxx64) boost::serialization::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >::singleton<boost::serialization::extended_type_info_typeid<_E_SC_SI_OPT_USE_MORE_D16_SELECTOR> >
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 2876:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9387F47E2 (UnityPlayer) UnityMain
0x00007FF93816FF2A (UnityPlayer) UnityMain
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF937E340D1)
0x00007FF937E340D1 (UnityPlayer) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF937E3F94D)
0x00007FF937E3F94D (UnityPlayer) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF937E3FA28)
0x00007FF937E3FA28 (UnityPlayer) (function-name not available)
0x00007FF93816EEB8 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 4660:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF93891186A (UnityPlayer) UnityMain
0x00007FF9389117BE (UnityPlayer) UnityMain
0x00007FF93889F5A6 (UnityPlayer) UnityMain
0x00007FF938D4D340 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 8132:
0x00007FF98724CDF4 (ntdll) NtWaitForSingleObject
0x00007FF984B21A8E (KERNELBASE) WaitForSingleObjectEx
0x00007FF9388F3F95 (UnityPlayer) UnityMain
0x00007FF93889D87A (UnityPlayer) UnityMain
0x00007FF93889F571 (UnityPlayer) UnityMain
0x00007FF938D4D340 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6352:
0x00007FF98724D3F4 (ntdll) NtDelayExecution
0x00007FF984B4967E (KERNELBASE) SleepEx
0x00007FF93889DA2A (UnityPlayer) UnityMain
0x00007FF93889F5D4 (UnityPlayer) UnityMain
0x00007FF938D4D340 (UnityPlayer) UnityMain
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6448:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6356:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7088:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 5588:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6512:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6980:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7084:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 5576:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 5532:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 8168:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 5516:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7880:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 412:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 2300:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF974966463)
0x00007FF974966463 (amdxx64) (function-name not available)
ERROR: SymGetSymFromAddr64, GetLastError: 'Attempt to access invalid address.' (Address: 00007FF97496666F)
0x00007FF97496666F (amdxx64) (function-name not available)
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 3296:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 1776:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 6120:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 2468:
0x00007FF987250764 (ntdll) ZwWaitForAlertByThreadId
0x00007FF987214295 (ntdll) RtlSleepConditionVariableCS
0x00007FF984B6CE39 (KERNELBASE) SleepConditionVariableCS
0x00007FF974ADA22C (amdxx64) MmTelemetryParser
0x00007FF974AE513D (amdxx64) MmTelemetryParser
0x00007FF9755D3F62 (amdxx64) boost::serialization::singleton<std::set<boost::serialization::void_cast_detail::void_caster const * __ptr64,boost::serialization::void_cast_detail::void_caster_compare,std::allocator<boost::serialization::void_cast_detail::void_caster const * __ptr64> > >::is_destroyed
0x00007FF985E77034 (KERNEL32) BaseThreadInitThunk
0x00007FF987202651 (ntdll) RtlUserThreadStart
Call Stack for Thread 7804: