-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.log
More file actions
3309 lines (3309 loc) · 351 KB
/
debug.log
File metadata and controls
3309 lines (3309 loc) · 351 KB
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
[0630/154435.080:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/154435.082:ERROR:exception_snapshot_win.cc(98)] thread ID 2392 not found in process
[0630/154435.100:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/154435.100:ERROR:exception_snapshot_win.cc(98)] thread ID 3636 not found in process
[0630/154457.877:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/154457.878:ERROR:exception_snapshot_win.cc(98)] thread ID 16568 not found in process
[0630/154621.474:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/154621.476:ERROR:exception_snapshot_win.cc(98)] thread ID 17468 not found in process
[0630/155058.847:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/155058.849:ERROR:exception_snapshot_win.cc(98)] thread ID 16376 not found in process
[0630/155227.471:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/155227.473:ERROR:exception_snapshot_win.cc(98)] thread ID 9740 not found in process
[0630/155334.178:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/155334.179:ERROR:exception_snapshot_win.cc(98)] thread ID 17912 not found in process
[0630/155428.164:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/155428.166:ERROR:exception_snapshot_win.cc(98)] thread ID 10012 not found in process
[0630/155547.052:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/155547.054:ERROR:exception_snapshot_win.cc(98)] thread ID 9976 not found in process
[0630/160216.350:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/160216.352:ERROR:exception_snapshot_win.cc(98)] thread ID 3808 not found in process
[0630/163333.623:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/163333.624:ERROR:exception_snapshot_win.cc(98)] thread ID 12728 not found in process
[0630/163344.233:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/163344.235:ERROR:exception_snapshot_win.cc(98)] thread ID 11044 not found in process
[0630/163902.032:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/163902.034:ERROR:exception_snapshot_win.cc(98)] thread ID 18984 not found in process
[0630/165730.143:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/165730.145:ERROR:exception_snapshot_win.cc(98)] thread ID 20740 not found in process
[0630/165730.165:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/165730.165:ERROR:exception_snapshot_win.cc(98)] thread ID 6764 not found in process
[0630/165933.489:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/165933.489:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/165933.491:ERROR:exception_snapshot_win.cc(98)] thread ID 7820 not found in process
[0630/165933.491:ERROR:exception_snapshot_win.cc(98)] thread ID 1664 not found in process
[0630/165933.492:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/165933.494:ERROR:exception_snapshot_win.cc(98)] thread ID 20920 not found in process
[0630/170423.113:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/170423.114:ERROR:exception_snapshot_win.cc(98)] thread ID 1068 not found in process
[0630/170423.132:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/170423.132:ERROR:exception_snapshot_win.cc(98)] thread ID 11940 not found in process
[0630/171225.285:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/171225.287:ERROR:exception_snapshot_win.cc(98)] thread ID 16832 not found in process
[0630/172507.257:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/172507.259:ERROR:exception_snapshot_win.cc(98)] thread ID 19724 not found in process
[0630/174256.620:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/174256.622:ERROR:exception_snapshot_win.cc(98)] thread ID 8064 not found in process
[0630/174438.883:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/174438.884:ERROR:exception_snapshot_win.cc(98)] thread ID 11504 not found in process
[0630/174441.118:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/174441.120:ERROR:exception_snapshot_win.cc(98)] thread ID 8084 not found in process
[0630/174857.898:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0630/174857.900:ERROR:exception_snapshot_win.cc(98)] thread ID 12768 not found in process
[0701/132116.560:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/132116.562:ERROR:exception_snapshot_win.cc(98)] thread ID 2424 not found in process
[0701/132116.581:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/132116.581:ERROR:exception_snapshot_win.cc(98)] thread ID 2612 not found in process
[0701/132746.775:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/132746.776:ERROR:exception_snapshot_win.cc(98)] thread ID 18228 not found in process
[0701/132800.010:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/132800.012:ERROR:exception_snapshot_win.cc(98)] thread ID 8256 not found in process
[0701/132852.563:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/132852.564:ERROR:exception_snapshot_win.cc(98)] thread ID 13064 not found in process
[0701/132852.596:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/132852.596:ERROR:exception_snapshot_win.cc(98)] thread ID 10540 not found in process
[0701/133053.717:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/133053.719:ERROR:exception_snapshot_win.cc(98)] thread ID 21232 not found in process
[0701/133455.058:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/133455.059:ERROR:exception_snapshot_win.cc(98)] thread ID 18524 not found in process
[0701/133455.078:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/133455.078:ERROR:exception_snapshot_win.cc(98)] thread ID 21304 not found in process
[0701/134121.315:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/134121.316:ERROR:exception_snapshot_win.cc(98)] thread ID 19708 not found in process
[0701/135427.931:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/135427.933:ERROR:exception_snapshot_win.cc(98)] thread ID 17884 not found in process
[0701/135921.838:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/135921.840:ERROR:exception_snapshot_win.cc(98)] thread ID 1416 not found in process
[0701/141029.375:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/141029.377:ERROR:exception_snapshot_win.cc(98)] thread ID 14940 not found in process
[0701/141329.913:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/141329.915:ERROR:exception_snapshot_win.cc(98)] thread ID 16952 not found in process
[0701/142246.271:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/142246.272:ERROR:exception_snapshot_win.cc(98)] thread ID 12940 not found in process
[0701/142345.458:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/142345.460:ERROR:exception_snapshot_win.cc(98)] thread ID 8996 not found in process
[0701/145736.554:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/145736.556:ERROR:exception_snapshot_win.cc(98)] thread ID 14652 not found in process
[0701/145738.083:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/145738.085:ERROR:exception_snapshot_win.cc(98)] thread ID 9296 not found in process
[0701/145739.963:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/145739.964:ERROR:exception_snapshot_win.cc(98)] thread ID 21272 not found in process
[0701/145739.983:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/145739.983:ERROR:exception_snapshot_win.cc(98)] thread ID 20912 not found in process
[0701/150255.212:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/150255.213:ERROR:exception_snapshot_win.cc(98)] thread ID 16460 not found in process
[0701/150419.005:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/150419.007:ERROR:exception_snapshot_win.cc(98)] thread ID 21124 not found in process
[0701/150758.162:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/150758.164:ERROR:exception_snapshot_win.cc(98)] thread ID 20552 not found in process
[0701/150758.162:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/150758.164:ERROR:exception_snapshot_win.cc(98)] thread ID 8516 not found in process
[0701/150951.975:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/150951.977:ERROR:exception_snapshot_win.cc(98)] thread ID 18744 not found in process
[0701/151644.606:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/151644.608:ERROR:exception_snapshot_win.cc(98)] thread ID 10476 not found in process
[0701/152422.580:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/152422.582:ERROR:exception_snapshot_win.cc(98)] thread ID 18740 not found in process
[0701/152450.370:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/152450.371:ERROR:exception_snapshot_win.cc(98)] thread ID 20636 not found in process
[0701/152601.284:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/152601.285:ERROR:exception_snapshot_win.cc(98)] thread ID 19996 not found in process
[0701/152601.303:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/152601.304:ERROR:exception_snapshot_win.cc(98)] thread ID 19992 not found in process
[0701/152844.017:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/152844.020:ERROR:exception_snapshot_win.cc(98)] thread ID 11768 not found in process
[0701/152849.390:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/152849.391:ERROR:exception_snapshot_win.cc(98)] thread ID 13812 not found in process
[0701/152948.826:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/152948.828:ERROR:exception_snapshot_win.cc(98)] thread ID 20524 not found in process
[0701/153253.860:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/153253.862:ERROR:exception_snapshot_win.cc(98)] thread ID 20868 not found in process
[0701/153416.180:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/153416.182:ERROR:exception_snapshot_win.cc(98)] thread ID 17760 not found in process
[0701/153419.233:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/153419.235:ERROR:exception_snapshot_win.cc(98)] thread ID 17068 not found in process
[0701/154723.128:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/154723.130:ERROR:exception_snapshot_win.cc(98)] thread ID 22240 not found in process
[0701/154853.013:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/154853.014:ERROR:exception_snapshot_win.cc(98)] thread ID 21576 not found in process
[0701/154853.033:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/154853.033:ERROR:exception_snapshot_win.cc(98)] thread ID 20868 not found in process
[0701/161305.426:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/161305.429:ERROR:exception_snapshot_win.cc(98)] thread ID 19932 not found in process
[0701/161613.823:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/161613.824:ERROR:exception_snapshot_win.cc(98)] thread ID 12816 not found in process
[0701/161727.213:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/161727.215:ERROR:exception_snapshot_win.cc(98)] thread ID 21516 not found in process
[0701/162321.075:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/162321.076:ERROR:exception_snapshot_win.cc(98)] thread ID 22208 not found in process
[0701/162510.238:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/162510.240:ERROR:exception_snapshot_win.cc(98)] thread ID 2540 not found in process
[0701/162510.278:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/162510.278:ERROR:exception_snapshot_win.cc(98)] thread ID 10028 not found in process
[0701/162523.298:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/162523.300:ERROR:exception_snapshot_win.cc(98)] thread ID 3528 not found in process
[0701/162523.324:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/162523.324:ERROR:exception_snapshot_win.cc(98)] thread ID 10412 not found in process
[0701/162523.360:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/162523.360:ERROR:exception_snapshot_win.cc(98)] thread ID 21928 not found in process
[0701/163038.356:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/163038.358:ERROR:exception_snapshot_win.cc(98)] thread ID 16992 not found in process
[0701/163038.395:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/163038.395:ERROR:exception_snapshot_win.cc(98)] thread ID 21520 not found in process
[0701/163050.526:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/163050.527:ERROR:exception_snapshot_win.cc(98)] thread ID 17184 not found in process
[0701/163050.573:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/163050.573:ERROR:exception_snapshot_win.cc(98)] thread ID 12992 not found in process
[0701/163204.045:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/163204.047:ERROR:exception_snapshot_win.cc(98)] thread ID 8884 not found in process
[0701/163204.085:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/163204.085:ERROR:exception_snapshot_win.cc(98)] thread ID 21928 not found in process
[0701/164005.529:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0701/164005.530:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/164005.531:ERROR:exception_snapshot_win.cc(98)] thread ID 21644 not found in process
[0701/164959.084:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/164959.085:ERROR:exception_snapshot_win.cc(98)] thread ID 6588 not found in process
[0701/164959.131:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/164959.131:ERROR:exception_snapshot_win.cc(98)] thread ID 256 not found in process
[0701/164959.175:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/164959.177:ERROR:exception_snapshot_win.cc(98)] thread ID 19996 not found in process
[0701/164959.218:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/164959.218:ERROR:exception_snapshot_win.cc(98)] thread ID 11528 not found in process
[0701/165048.333:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/165048.334:ERROR:exception_snapshot_win.cc(98)] thread ID 21532 not found in process
[0701/165048.354:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/165048.354:ERROR:exception_snapshot_win.cc(98)] thread ID 22424 not found in process
[0701/165048.398:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/165048.398:ERROR:exception_snapshot_win.cc(98)] thread ID 8880 not found in process
[0701/181646.011:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/181646.234:ERROR:exception_snapshot_win.cc(98)] thread ID 22164 not found in process
[0701/182059.844:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/182059.846:ERROR:exception_snapshot_win.cc(98)] thread ID 21624 not found in process
[0701/182158.984:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/182158.985:ERROR:exception_snapshot_win.cc(98)] thread ID 8488 not found in process
[0701/182422.295:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/182422.297:ERROR:exception_snapshot_win.cc(98)] thread ID 16988 not found in process
[0701/182650.333:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/182650.335:ERROR:exception_snapshot_win.cc(98)] thread ID 14936 not found in process
[0701/182803.700:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/182803.702:ERROR:exception_snapshot_win.cc(98)] thread ID 9516 not found in process
[0701/182927.318:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/182927.319:ERROR:exception_snapshot_win.cc(98)] thread ID 15464 not found in process
[0701/183109.518:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/183109.519:ERROR:exception_snapshot_win.cc(98)] thread ID 15348 not found in process
[0701/183154.575:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/183154.576:ERROR:exception_snapshot_win.cc(98)] thread ID 15236 not found in process
[0701/183154.602:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/183154.602:ERROR:exception_snapshot_win.cc(98)] thread ID 12492 not found in process
[0701/183322.362:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/183322.364:ERROR:exception_snapshot_win.cc(98)] thread ID 13292 not found in process
[0701/183458.172:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0701/183458.174:ERROR:exception_snapshot_win.cc(98)] thread ID 2144 not found in process
[0702/111735.711:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/111735.714:ERROR:exception_snapshot_win.cc(98)] thread ID 21312 not found in process
[0702/111735.772:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0702/111735.773:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/111735.773:ERROR:exception_snapshot_win.cc(98)] thread ID 13004 not found in process
[0702/111752.177:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/111752.179:ERROR:exception_snapshot_win.cc(98)] thread ID 10636 not found in process
[0702/111752.199:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/111752.199:ERROR:exception_snapshot_win.cc(98)] thread ID 8268 not found in process
[0702/111752.237:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/111752.237:ERROR:exception_snapshot_win.cc(98)] thread ID 7516 not found in process
[0702/112036.945:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112036.947:ERROR:exception_snapshot_win.cc(98)] thread ID 11376 not found in process
[0702/112036.985:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0702/112036.987:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112036.987:ERROR:exception_snapshot_win.cc(98)] thread ID 4168 not found in process
[0702/112306.465:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112306.466:ERROR:exception_snapshot_win.cc(98)] thread ID 5900 not found in process
[0702/112306.504:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112306.504:ERROR:exception_snapshot_win.cc(98)] thread ID 22416 not found in process
[0702/112357.183:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112357.184:ERROR:exception_snapshot_win.cc(98)] thread ID 13540 not found in process
[0702/112357.204:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112357.204:ERROR:exception_snapshot_win.cc(98)] thread ID 13708 not found in process
[0702/112357.245:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112357.245:ERROR:exception_snapshot_win.cc(98)] thread ID 7336 not found in process
[0702/112505.912:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112505.914:ERROR:exception_snapshot_win.cc(98)] thread ID 19844 not found in process
[0702/112505.954:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112505.954:ERROR:exception_snapshot_win.cc(98)] thread ID 9108 not found in process
[0702/112554.192:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112554.194:ERROR:exception_snapshot_win.cc(98)] thread ID 3372 not found in process
[0702/112554.212:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112554.213:ERROR:exception_snapshot_win.cc(98)] thread ID 18184 not found in process
[0702/112554.249:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112554.249:ERROR:exception_snapshot_win.cc(98)] thread ID 10416 not found in process
[0702/112634.586:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112634.587:ERROR:exception_snapshot_win.cc(98)] thread ID 13308 not found in process
[0702/112634.626:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112634.626:ERROR:exception_snapshot_win.cc(98)] thread ID 20416 not found in process
[0702/112821.814:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112821.815:ERROR:exception_snapshot_win.cc(98)] thread ID 11228 not found in process
[0702/112821.854:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112821.854:ERROR:exception_snapshot_win.cc(98)] thread ID 8388 not found in process
[0702/112823.220:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112823.221:ERROR:exception_snapshot_win.cc(98)] thread ID 4460 not found in process
[0702/112823.257:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/112823.257:ERROR:exception_snapshot_win.cc(98)] thread ID 6092 not found in process
[0702/113246.684:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113246.686:ERROR:exception_snapshot_win.cc(98)] thread ID 3164 not found in process
[0702/113246.724:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0702/113246.725:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113246.725:ERROR:exception_snapshot_win.cc(98)] thread ID 8736 not found in process
[0702/113315.223:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113315.224:ERROR:exception_snapshot_win.cc(98)] thread ID 16416 not found in process
[0702/113315.244:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113315.244:ERROR:exception_snapshot_win.cc(98)] thread ID 12716 not found in process
[0702/113315.280:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113315.280:ERROR:exception_snapshot_win.cc(98)] thread ID 10540 not found in process
[0702/113532.381:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113532.383:ERROR:exception_snapshot_win.cc(98)] thread ID 17484 not found in process
[0702/113532.431:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113532.431:ERROR:exception_snapshot_win.cc(98)] thread ID 7332 not found in process
[0702/113639.988:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113639.990:ERROR:exception_snapshot_win.cc(98)] thread ID 12812 not found in process
[0702/113640.027:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/113640.027:ERROR:exception_snapshot_win.cc(98)] thread ID 21376 not found in process
[0702/114102.938:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/114102.939:ERROR:exception_snapshot_win.cc(98)] thread ID 15620 not found in process
[0702/114102.981:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/114102.981:ERROR:exception_snapshot_win.cc(98)] thread ID 608 not found in process
[0702/114139.521:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/114139.523:ERROR:exception_snapshot_win.cc(98)] thread ID 19880 not found in process
[0702/114139.564:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/114139.564:ERROR:exception_snapshot_win.cc(98)] thread ID 19084 not found in process
[0702/120208.318:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/120208.320:ERROR:exception_snapshot_win.cc(98)] thread ID 21424 not found in process
[0702/120250.399:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/120250.400:ERROR:exception_snapshot_win.cc(98)] thread ID 20152 not found in process
[0702/120526.614:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/120526.615:ERROR:exception_snapshot_win.cc(98)] thread ID 14824 not found in process
[0702/120550.487:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/120550.489:ERROR:exception_snapshot_win.cc(98)] thread ID 7584 not found in process
[0702/120550.507:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/120550.507:ERROR:exception_snapshot_win.cc(98)] thread ID 20584 not found in process
[0702/120833.991:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/120833.993:ERROR:exception_snapshot_win.cc(98)] thread ID 14408 not found in process
[0702/121057.559:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/121057.561:ERROR:exception_snapshot_win.cc(98)] thread ID 9156 not found in process
[0702/121057.580:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/121057.580:ERROR:exception_snapshot_win.cc(98)] thread ID 13740 not found in process
[0702/121143.267:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/121143.269:ERROR:exception_snapshot_win.cc(98)] thread ID 18048 not found in process
[0702/121201.301:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/121201.302:ERROR:exception_snapshot_win.cc(98)] thread ID 256 not found in process
[0702/121503.395:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/121503.397:ERROR:exception_snapshot_win.cc(98)] thread ID 22520 not found in process
[0702/140302.451:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/140302.454:ERROR:exception_snapshot_win.cc(98)] thread ID 14512 not found in process
[0702/140302.458:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/140302.459:ERROR:exception_snapshot_win.cc(98)] thread ID 21232 not found in process
[0702/140302.458:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/140302.460:ERROR:exception_snapshot_win.cc(98)] thread ID 10728 not found in process
[0702/140302.488:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/140302.488:ERROR:exception_snapshot_win.cc(98)] thread ID 1044 not found in process
[0702/140838.180:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/140838.182:ERROR:exception_snapshot_win.cc(98)] thread ID 5492 not found in process
[0702/141038.033:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141038.033:ERROR:exception_snapshot_win.cc(98)] thread ID 21824 not found in process
[0702/141038.079:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141038.079:ERROR:exception_snapshot_win.cc(98)] thread ID 14644 not found in process
[0702/141124.536:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141124.538:ERROR:exception_snapshot_win.cc(98)] thread ID 5624 not found in process
[0702/141124.609:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141124.609:ERROR:exception_snapshot_win.cc(98)] thread ID 19784 not found in process
[0702/141338.619:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141338.621:ERROR:exception_snapshot_win.cc(98)] thread ID 5708 not found in process
[0702/141338.671:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141338.671:ERROR:exception_snapshot_win.cc(98)] thread ID 13048 not found in process
[0702/141424.159:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141424.161:ERROR:exception_snapshot_win.cc(98)] thread ID 17780 not found in process
[0702/141424.181:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141424.181:ERROR:exception_snapshot_win.cc(98)] thread ID 7584 not found in process
[0702/141424.230:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141424.230:ERROR:exception_snapshot_win.cc(98)] thread ID 20132 not found in process
[0702/141733.383:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141733.385:ERROR:exception_snapshot_win.cc(98)] thread ID 20292 not found in process
[0702/141733.420:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/141733.420:ERROR:exception_snapshot_win.cc(98)] thread ID 1868 not found in process
[0702/142037.086:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142037.088:ERROR:exception_snapshot_win.cc(98)] thread ID 11468 not found in process
[0702/142037.132:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142037.132:ERROR:exception_snapshot_win.cc(98)] thread ID 5516 not found in process
[0702/142243.864:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142243.866:ERROR:exception_snapshot_win.cc(98)] thread ID 17292 not found in process
[0702/142243.905:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142243.905:ERROR:exception_snapshot_win.cc(98)] thread ID 20420 not found in process
[0702/142439.435:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142439.437:ERROR:exception_snapshot_win.cc(98)] thread ID 17344 not found in process
[0702/142439.480:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142439.480:ERROR:exception_snapshot_win.cc(98)] thread ID 22232 not found in process
[0702/142524.575:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142524.577:ERROR:exception_snapshot_win.cc(98)] thread ID 18696 not found in process
[0702/142524.596:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142524.596:ERROR:exception_snapshot_win.cc(98)] thread ID 7064 not found in process
[0702/142524.637:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142524.637:ERROR:exception_snapshot_win.cc(98)] thread ID 9208 not found in process
[0702/142658.412:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142658.413:ERROR:exception_snapshot_win.cc(98)] thread ID 21240 not found in process
[0702/142658.456:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142658.456:ERROR:exception_snapshot_win.cc(98)] thread ID 7780 not found in process
[0702/142751.493:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142751.495:ERROR:exception_snapshot_win.cc(98)] thread ID 11336 not found in process
[0702/142751.534:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/142751.534:ERROR:exception_snapshot_win.cc(98)] thread ID 11448 not found in process
[0702/143138.996:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143138.997:ERROR:exception_snapshot_win.cc(98)] thread ID 4352 not found in process
[0702/143139.041:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143139.041:ERROR:exception_snapshot_win.cc(98)] thread ID 932 not found in process
[0702/143341.782:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143341.783:ERROR:exception_snapshot_win.cc(98)] thread ID 21236 not found in process
[0702/143341.830:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143341.830:ERROR:exception_snapshot_win.cc(98)] thread ID 5820 not found in process
[0702/143444.380:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143444.381:ERROR:exception_snapshot_win.cc(98)] thread ID 17396 not found in process
[0702/143444.422:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143444.422:ERROR:exception_snapshot_win.cc(98)] thread ID 15068 not found in process
[0702/143717.363:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143717.365:ERROR:exception_snapshot_win.cc(98)] thread ID 1520 not found in process
[0702/143717.407:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/143717.407:ERROR:exception_snapshot_win.cc(98)] thread ID 13644 not found in process
[0702/144204.323:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/144204.324:ERROR:exception_snapshot_win.cc(98)] thread ID 10020 not found in process
[0702/144204.365:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/144204.365:ERROR:exception_snapshot_win.cc(98)] thread ID 19704 not found in process
[0702/144345.448:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/144345.450:ERROR:exception_snapshot_win.cc(98)] thread ID 21908 not found in process
[0702/144345.487:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/144345.487:ERROR:exception_snapshot_win.cc(98)] thread ID 21812 not found in process
[0702/144441.692:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/144441.693:ERROR:exception_snapshot_win.cc(98)] thread ID 17236 not found in process
[0702/144741.876:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/144741.877:ERROR:exception_snapshot_win.cc(98)] thread ID 10300 not found in process
[0702/144800.951:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/144800.952:ERROR:exception_snapshot_win.cc(98)] thread ID 1924 not found in process
[0702/145237.581:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/145237.583:ERROR:exception_snapshot_win.cc(98)] thread ID 8476 not found in process
[0702/145454.240:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/145454.242:ERROR:exception_snapshot_win.cc(98)] thread ID 3112 not found in process
[0702/145550.031:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/145550.032:ERROR:exception_snapshot_win.cc(98)] thread ID 9224 not found in process
[0702/145636.469:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/145636.470:ERROR:exception_snapshot_win.cc(98)] thread ID 18808 not found in process
[0702/145636.963:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/145636.963:ERROR:exception_snapshot_win.cc(98)] thread ID 14964 not found in process
[0702/150543.269:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/150543.270:ERROR:exception_snapshot_win.cc(98)] thread ID 19008 not found in process
[0702/150713.459:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/150713.461:ERROR:exception_snapshot_win.cc(98)] thread ID 15348 not found in process
[0702/150730.525:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/150730.527:ERROR:exception_snapshot_win.cc(98)] thread ID 13196 not found in process
[0702/150838.942:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/150838.944:ERROR:exception_snapshot_win.cc(98)] thread ID 22968 not found in process
[0702/150838.966:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/150838.967:ERROR:exception_snapshot_win.cc(98)] thread ID 22800 not found in process
[0702/151210.259:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/151210.261:ERROR:exception_snapshot_win.cc(98)] thread ID 10500 not found in process
[0702/151256.203:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/151256.205:ERROR:exception_snapshot_win.cc(98)] thread ID 22652 not found in process
[0702/151338.045:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/151338.048:ERROR:exception_snapshot_win.cc(98)] thread ID 16880 not found in process
[0702/151431.215:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/151431.217:ERROR:exception_snapshot_win.cc(98)] thread ID 22772 not found in process
[0702/152329.990:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/152329.991:ERROR:exception_snapshot_win.cc(98)] thread ID 12304 not found in process
[0702/152343.042:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/152343.044:ERROR:exception_snapshot_win.cc(98)] thread ID 16408 not found in process
[0702/152618.226:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/152618.228:ERROR:exception_snapshot_win.cc(98)] thread ID 22612 not found in process
[0702/153345.466:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/153345.478:ERROR:exception_snapshot_win.cc(98)] thread ID 19028 not found in process
[0702/153846.243:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/153846.244:ERROR:exception_snapshot_win.cc(98)] thread ID 19248 not found in process
[0702/154132.478:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/154132.480:ERROR:exception_snapshot_win.cc(98)] thread ID 3164 not found in process
[0702/154604.236:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/154604.238:ERROR:exception_snapshot_win.cc(98)] thread ID 16732 not found in process
[0702/154728.474:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/154728.476:ERROR:exception_snapshot_win.cc(98)] thread ID 10288 not found in process
[0702/154908.399:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/154908.401:ERROR:exception_snapshot_win.cc(98)] thread ID 11512 not found in process
[0702/154948.357:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/154948.359:ERROR:exception_snapshot_win.cc(98)] thread ID 672 not found in process
[0702/154948.377:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/154948.377:ERROR:exception_snapshot_win.cc(98)] thread ID 17652 not found in process
[0702/155140.800:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/155140.801:ERROR:exception_snapshot_win.cc(98)] thread ID 2008 not found in process
[0702/155824.089:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/155824.091:ERROR:exception_snapshot_win.cc(98)] thread ID 19028 not found in process
[0702/161331.384:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/161331.385:ERROR:exception_snapshot_win.cc(98)] thread ID 12768 not found in process
[0702/161411.802:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/161411.803:ERROR:exception_snapshot_win.cc(98)] thread ID 16972 not found in process
[0702/161701.153:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/161701.154:ERROR:exception_snapshot_win.cc(98)] thread ID 18108 not found in process
[0702/162153.634:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/162153.636:ERROR:exception_snapshot_win.cc(98)] thread ID 2732 not found in process
[0702/162227.714:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/162227.715:ERROR:exception_snapshot_win.cc(98)] thread ID 3684 not found in process
[0702/162227.733:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/162227.733:ERROR:exception_snapshot_win.cc(98)] thread ID 11788 not found in process
[0702/162638.167:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/162638.169:ERROR:exception_snapshot_win.cc(98)] thread ID 1180 not found in process
[0702/162823.927:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/162823.929:ERROR:exception_snapshot_win.cc(98)] thread ID 13916 not found in process
[0702/163100.083:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/163100.084:ERROR:exception_snapshot_win.cc(98)] thread ID 10552 not found in process
[0702/163130.739:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/163130.741:ERROR:exception_snapshot_win.cc(98)] thread ID 18860 not found in process
[0702/163453.482:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/163453.483:ERROR:exception_snapshot_win.cc(98)] thread ID 16992 not found in process
[0702/163521.446:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/163521.447:ERROR:exception_snapshot_win.cc(98)] thread ID 916 not found in process
[0702/163602.315:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/163602.316:ERROR:exception_snapshot_win.cc(98)] thread ID 412 not found in process
[0702/164015.687:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/164015.689:ERROR:exception_snapshot_win.cc(98)] thread ID 15776 not found in process
[0702/164015.707:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/164015.707:ERROR:exception_snapshot_win.cc(98)] thread ID 14896 not found in process
[0702/164020.979:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/164020.981:ERROR:exception_snapshot_win.cc(98)] thread ID 3488 not found in process
[0702/164310.333:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/164310.334:ERROR:exception_snapshot_win.cc(98)] thread ID 19348 not found in process
[0702/164821.962:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/164821.963:ERROR:exception_snapshot_win.cc(98)] thread ID 6604 not found in process
[0702/164957.137:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/164957.138:ERROR:exception_snapshot_win.cc(98)] thread ID 10576 not found in process
[0702/165205.335:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/165205.336:ERROR:exception_snapshot_win.cc(98)] thread ID 15224 not found in process
[0702/165205.356:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/165205.356:ERROR:exception_snapshot_win.cc(98)] thread ID 9972 not found in process
[0702/165257.589:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/165257.591:ERROR:exception_snapshot_win.cc(98)] thread ID 10716 not found in process
[0702/165257.610:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/165257.610:ERROR:exception_snapshot_win.cc(98)] thread ID 12740 not found in process
[0702/165626.754:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/165626.766:ERROR:exception_snapshot_win.cc(98)] thread ID 6080 not found in process
[0702/170722.358:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/170722.360:ERROR:exception_snapshot_win.cc(98)] thread ID 9660 not found in process
[0702/170755.217:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/170755.218:ERROR:exception_snapshot_win.cc(98)] thread ID 9544 not found in process
[0702/170959.048:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/170959.050:ERROR:exception_snapshot_win.cc(98)] thread ID 17680 not found in process
[0702/171726.461:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0702/171726.559:ERROR:exception_snapshot_win.cc(98)] thread ID 15052 not found in process
[0703/101456.893:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/101457.006:ERROR:exception_snapshot_win.cc(98)] thread ID 2308 not found in process
[0703/101457.025:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/101457.025:ERROR:exception_snapshot_win.cc(98)] thread ID 20764 not found in process
[0703/101827.758:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/101827.794:ERROR:exception_snapshot_win.cc(98)] thread ID 11628 not found in process
[0703/101917.571:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/101917.573:ERROR:exception_snapshot_win.cc(98)] thread ID 18264 not found in process
[0703/101917.592:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/101917.592:ERROR:exception_snapshot_win.cc(98)] thread ID 14756 not found in process
[0703/101919.603:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/101919.603:ERROR:exception_snapshot_win.cc(98)] thread ID 19332 not found in process
[0703/111127.794:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/111127.861:ERROR:exception_snapshot_win.cc(98)] thread ID 18264 not found in process
[0703/111248.228:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/111248.230:ERROR:exception_snapshot_win.cc(98)] thread ID 7680 not found in process
[0703/111339.561:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/111339.563:ERROR:exception_snapshot_win.cc(98)] thread ID 2340 not found in process
[0703/111339.582:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/111339.582:ERROR:exception_snapshot_win.cc(98)] thread ID 14628 not found in process
[0703/112641.650:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/112641.652:ERROR:exception_snapshot_win.cc(98)] thread ID 1440 not found in process
[0703/112646.152:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/112646.153:ERROR:exception_snapshot_win.cc(98)] thread ID 9468 not found in process
[0703/113413.595:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/113413.596:ERROR:exception_snapshot_win.cc(98)] thread ID 2700 not found in process
[0703/113533.947:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/113533.949:ERROR:exception_snapshot_win.cc(98)] thread ID 12780 not found in process
[0703/114026.989:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/114026.990:ERROR:exception_snapshot_win.cc(98)] thread ID 2392 not found in process
[0703/114804.953:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/114804.977:ERROR:exception_snapshot_win.cc(98)] thread ID 16192 not found in process
[0703/114804.994:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/114804.994:ERROR:exception_snapshot_win.cc(98)] thread ID 16212 not found in process
[0703/115125.170:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/115125.171:ERROR:exception_snapshot_win.cc(98)] thread ID 18408 not found in process
[0703/115224.730:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/115224.731:ERROR:exception_snapshot_win.cc(98)] thread ID 5284 not found in process
[0703/115445.208:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/115445.209:ERROR:exception_snapshot_win.cc(98)] thread ID 13344 not found in process
[0703/115448.514:ERROR:crash_report_database_win.cc(580)] CreateDirectory C:\Users\moon\AppData\Local\Temp\scoped_dir1856_1756368699\Crashpad: 磁盘空间不足。 (0x70)
[0703/115448.522:ERROR:registration_protocol_win.cc(131)] TransactNamedPipe: 管道已结束。 (0x6D)
[0703/115448.524:ERROR:crash_report_database_win.cc(580)] CreateDirectory C:\Users\moon\AppData\Local\Temp\scoped_dir1856_1756368699\Crashpad: 磁盘空间不足。 (0x70)
[0703/120018.312:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/120018.313:ERROR:exception_snapshot_win.cc(98)] thread ID 7620 not found in process
[0703/120227.552:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/120227.554:ERROR:exception_snapshot_win.cc(98)] thread ID 17744 not found in process
[0703/134711.409:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/134711.426:ERROR:exception_snapshot_win.cc(98)] thread ID 5136 not found in process
[0703/160929.593:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/160929.595:ERROR:exception_snapshot_win.cc(98)] thread ID 12700 not found in process
[0703/161122.329:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/161122.331:ERROR:exception_snapshot_win.cc(98)] thread ID 19632 not found in process
[0703/163141.103:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/163141.105:ERROR:exception_snapshot_win.cc(98)] thread ID 18968 not found in process
[0703/175248.880:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/175248.881:ERROR:exception_snapshot_win.cc(98)] thread ID 22348 not found in process
[0703/175731.321:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/175731.323:ERROR:exception_snapshot_win.cc(98)] thread ID 23048 not found in process
[0703/180000.515:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/180000.517:ERROR:exception_snapshot_win.cc(98)] thread ID 23124 not found in process
[0703/180121.494:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/180121.495:ERROR:exception_snapshot_win.cc(98)] thread ID 10164 not found in process
[0703/180121.516:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/180121.516:ERROR:exception_snapshot_win.cc(98)] thread ID 21888 not found in process
[0703/180452.623:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/180452.626:ERROR:exception_snapshot_win.cc(98)] thread ID 4728 not found in process
[0703/180639.804:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/180639.806:ERROR:exception_snapshot_win.cc(98)] thread ID 23256 not found in process
[0703/180951.381:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/180951.383:ERROR:exception_snapshot_win.cc(98)] thread ID 24436 not found in process
[0703/180954.430:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/180954.431:ERROR:exception_snapshot_win.cc(98)] thread ID 24512 not found in process
[0703/181257.743:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/181257.745:ERROR:exception_snapshot_win.cc(98)] thread ID 9864 not found in process
[0703/181302.574:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/181302.575:ERROR:exception_snapshot_win.cc(98)] thread ID 19812 not found in process
[0703/181302.594:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/181302.595:ERROR:exception_snapshot_win.cc(98)] thread ID 12692 not found in process
[0703/181539.930:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0703/181539.931:ERROR:exception_snapshot_win.cc(98)] thread ID 15740 not found in process
[0704/112009.954:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/112009.955:ERROR:exception_snapshot_win.cc(98)] thread ID 25552 not found in process
[0704/112500.388:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/112500.389:ERROR:exception_snapshot_win.cc(98)] thread ID 24868 not found in process
[0704/112531.418:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/112531.420:ERROR:exception_snapshot_win.cc(98)] thread ID 24580 not found in process
[0704/112608.973:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/112608.975:ERROR:exception_snapshot_win.cc(98)] thread ID 14484 not found in process
[0704/113449.374:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/113449.376:ERROR:exception_snapshot_win.cc(98)] thread ID 12556 not found in process
[0704/113929.580:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/113929.582:ERROR:exception_snapshot_win.cc(98)] thread ID 25108 not found in process
[0704/113929.601:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/113929.601:ERROR:exception_snapshot_win.cc(98)] thread ID 16388 not found in process
[0704/114214.928:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/114214.929:ERROR:exception_snapshot_win.cc(98)] thread ID 9752 not found in process
[0704/114721.010:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/114721.011:ERROR:exception_snapshot_win.cc(98)] thread ID 12632 not found in process
[0704/114927.149:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/114927.150:ERROR:exception_snapshot_win.cc(98)] thread ID 21660 not found in process
[0704/114927.171:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/114927.171:ERROR:exception_snapshot_win.cc(98)] thread ID 16352 not found in process
[0704/115000.305:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/115000.306:ERROR:exception_snapshot_win.cc(98)] thread ID 9888 not found in process
[0704/115000.326:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/115000.326:ERROR:exception_snapshot_win.cc(98)] thread ID 6256 not found in process
[0704/115111.590:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/115111.592:ERROR:exception_snapshot_win.cc(98)] thread ID 10476 not found in process
[0704/115318.555:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/115318.557:ERROR:exception_snapshot_win.cc(98)] thread ID 19452 not found in process
[0704/115450.701:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/115450.703:ERROR:exception_snapshot_win.cc(98)] thread ID 23704 not found in process
[0704/115538.511:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/115538.513:ERROR:exception_snapshot_win.cc(98)] thread ID 25060 not found in process
[0704/150128.749:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/150128.751:ERROR:exception_snapshot_win.cc(98)] thread ID 5796 not found in process
[0704/150624.163:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/150624.165:ERROR:exception_snapshot_win.cc(98)] thread ID 20208 not found in process
[0704/151516.126:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/151516.129:ERROR:exception_snapshot_win.cc(98)] thread ID 20596 not found in process
[0704/151715.961:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/151715.963:ERROR:exception_snapshot_win.cc(98)] thread ID 13940 not found in process
[0704/151957.032:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/151957.033:ERROR:exception_snapshot_win.cc(98)] thread ID 25384 not found in process
[0704/151957.052:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/151957.052:ERROR:exception_snapshot_win.cc(98)] thread ID 9364 not found in process
[0704/152034.162:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0704/152034.164:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/152034.164:ERROR:exception_snapshot_win.cc(98)] thread ID 6384 not found in process
[0704/152034.177:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/152034.178:ERROR:exception_snapshot_win.cc(98)] thread ID 25248 not found in process
[0704/154418.526:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/154418.528:ERROR:exception_snapshot_win.cc(98)] thread ID 6236 not found in process
[0704/154428.960:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/154428.961:ERROR:exception_snapshot_win.cc(98)] thread ID 23680 not found in process
[0704/154525.138:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/154525.140:ERROR:exception_snapshot_win.cc(98)] thread ID 8032 not found in process
[0704/154525.161:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/154525.161:ERROR:exception_snapshot_win.cc(98)] thread ID 9628 not found in process
[0704/154758.231:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/154758.233:ERROR:exception_snapshot_win.cc(98)] thread ID 21748 not found in process
[0704/154758.253:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/154758.253:ERROR:exception_snapshot_win.cc(98)] thread ID 11468 not found in process
[0704/155152.954:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/155152.956:ERROR:exception_snapshot_win.cc(98)] thread ID 3136 not found in process
[0704/163510.102:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/163510.104:ERROR:exception_snapshot_win.cc(98)] thread ID 16828 not found in process
[0704/163510.142:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/163510.142:ERROR:exception_snapshot_win.cc(98)] thread ID 16572 not found in process
[0704/163526.009:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/163526.011:ERROR:exception_snapshot_win.cc(98)] thread ID 16652 not found in process
[0704/163526.049:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/163526.049:ERROR:exception_snapshot_win.cc(98)] thread ID 10704 not found in process
[0704/164701.792:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/164701.794:ERROR:exception_snapshot_win.cc(98)] thread ID 23888 not found in process
[0704/164701.833:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0704/164701.833:ERROR:exception_snapshot_win.cc(98)] thread ID 4668 not found in process
[0706/095642.636:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/095642.836:ERROR:exception_snapshot_win.cc(98)] thread ID 21436 not found in process
[0706/095642.858:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/095642.858:ERROR:exception_snapshot_win.cc(98)] thread ID 13552 not found in process
[0706/095833.130:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/095833.131:ERROR:exception_snapshot_win.cc(98)] thread ID 18728 not found in process
[0706/114549.145:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/114549.147:ERROR:exception_snapshot_win.cc(98)] thread ID 16676 not found in process
[0706/114633.178:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/114633.180:ERROR:exception_snapshot_win.cc(98)] thread ID 5508 not found in process
[0706/115003.377:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/115003.378:ERROR:exception_snapshot_win.cc(98)] thread ID 24580 not found in process
[0706/115524.234:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/115524.236:ERROR:exception_snapshot_win.cc(98)] thread ID 25072 not found in process
[0706/115524.256:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/115524.256:ERROR:exception_snapshot_win.cc(98)] thread ID 10752 not found in process
[0706/120028.170:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/120028.171:ERROR:exception_snapshot_win.cc(98)] thread ID 18424 not found in process
[0706/120059.830:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/120059.831:ERROR:exception_snapshot_win.cc(98)] thread ID 1792 not found in process
[0706/120324.437:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/120324.438:ERROR:exception_snapshot_win.cc(98)] thread ID 14956 not found in process
[0706/120548.060:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/120548.061:ERROR:exception_snapshot_win.cc(98)] thread ID 2696 not found in process
[0706/120559.744:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/120559.746:ERROR:exception_snapshot_win.cc(98)] thread ID 13072 not found in process
[0706/120656.402:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/120656.404:ERROR:exception_snapshot_win.cc(98)] thread ID 10692 not found in process
[0706/121050.417:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/121050.419:ERROR:exception_snapshot_win.cc(98)] thread ID 6192 not found in process
[0706/121221.100:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/121221.102:ERROR:exception_snapshot_win.cc(98)] thread ID 18876 not found in process
[0706/124059.253:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/124059.309:ERROR:exception_snapshot_win.cc(98)] thread ID 21964 not found in process
[0706/124253.440:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/124253.441:ERROR:exception_snapshot_win.cc(98)] thread ID 13976 not found in process
[0706/124625.513:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/124625.514:ERROR:exception_snapshot_win.cc(98)] thread ID 13508 not found in process
[0706/125034.402:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125034.403:ERROR:exception_snapshot_win.cc(98)] thread ID 9012 not found in process
[0706/125123.837:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125123.838:ERROR:exception_snapshot_win.cc(98)] thread ID 22936 not found in process
[0706/125123.857:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125123.857:ERROR:exception_snapshot_win.cc(98)] thread ID 17588 not found in process
[0706/125125.815:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125125.815:ERROR:exception_snapshot_win.cc(98)] thread ID 24484 not found in process
[0706/125342.666:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125342.667:ERROR:exception_snapshot_win.cc(98)] thread ID 2064 not found in process
[0706/125441.067:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125441.068:ERROR:exception_snapshot_win.cc(98)] thread ID 20316 not found in process
[0706/125914.584:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125914.585:ERROR:exception_snapshot_win.cc(98)] thread ID 19836 not found in process
[0706/125916.166:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/125916.166:ERROR:exception_snapshot_win.cc(98)] thread ID 8868 not found in process
[0706/133850.486:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/133850.583:ERROR:exception_snapshot_win.cc(98)] thread ID 1976 not found in process
[0706/133904.654:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/133904.655:ERROR:exception_snapshot_win.cc(98)] thread ID 18028 not found in process
[0706/134425.639:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/134425.640:ERROR:exception_snapshot_win.cc(98)] thread ID 11992 not found in process
[0706/134655.937:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/134655.938:ERROR:exception_snapshot_win.cc(98)] thread ID 7188 not found in process
[0706/134822.954:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/134822.954:ERROR:exception_snapshot_win.cc(98)] thread ID 13672 not found in process
[0706/135031.645:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/135031.646:ERROR:exception_snapshot_win.cc(98)] thread ID 3668 not found in process
[0706/135357.475:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/135357.475:ERROR:exception_snapshot_win.cc(98)] thread ID 7768 not found in process
[0706/170600.827:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/170600.829:ERROR:exception_snapshot_win.cc(98)] thread ID 9708 not found in process
[0706/170606.990:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/170606.990:ERROR:exception_snapshot_win.cc(98)] thread ID 7340 not found in process
[0706/170824.184:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/170824.186:ERROR:exception_snapshot_win.cc(98)] thread ID 17704 not found in process
[0706/171050.596:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/171051.048:ERROR:exception_snapshot_win.cc(98)] thread ID 10480 not found in process
[0706/171054.202:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/171054.203:ERROR:exception_snapshot_win.cc(98)] thread ID 9764 not found in process
[0706/171326.528:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/171326.530:ERROR:exception_snapshot_win.cc(98)] thread ID 5924 not found in process
[0706/171358.830:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/171358.832:ERROR:exception_snapshot_win.cc(98)] thread ID 16892 not found in process
[0706/171545.975:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/171545.977:ERROR:exception_snapshot_win.cc(98)] thread ID 14516 not found in process
[0706/171728.649:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/171728.650:ERROR:exception_snapshot_win.cc(98)] thread ID 13804 not found in process
[0706/171953.003:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/171953.005:ERROR:exception_snapshot_win.cc(98)] thread ID 18976 not found in process
[0706/172227.613:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/172227.615:ERROR:exception_snapshot_win.cc(98)] thread ID 19052 not found in process
[0706/172454.510:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/172454.511:ERROR:exception_snapshot_win.cc(98)] thread ID 17040 not found in process
[0706/172918.814:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/172918.816:ERROR:exception_snapshot_win.cc(98)] thread ID 4492 not found in process
[0706/173235.294:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/173235.295:ERROR:exception_snapshot_win.cc(98)] thread ID 18656 not found in process
[0706/173442.583:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/173442.586:ERROR:exception_snapshot_win.cc(98)] thread ID 1768 not found in process
[0706/173759.045:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/173759.047:ERROR:exception_snapshot_win.cc(98)] thread ID 11324 not found in process
[0706/174027.857:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/174027.859:ERROR:exception_snapshot_win.cc(98)] thread ID 16196 not found in process
[0706/174205.522:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/174205.524:ERROR:exception_snapshot_win.cc(98)] thread ID 16184 not found in process
[0706/174328.550:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/174328.552:ERROR:exception_snapshot_win.cc(98)] thread ID 22896 not found in process
[0706/174529.371:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/174529.372:ERROR:exception_snapshot_win.cc(98)] thread ID 20012 not found in process
[0706/174752.505:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/174752.506:ERROR:exception_snapshot_win.cc(98)] thread ID 16088 not found in process
[0706/174959.379:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/174959.380:ERROR:exception_snapshot_win.cc(98)] thread ID 1404 not found in process
[0706/175223.655:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/175223.656:ERROR:exception_snapshot_win.cc(98)] thread ID 22188 not found in process
[0706/175658.620:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/175658.623:ERROR:exception_snapshot_win.cc(98)] thread ID 22480 not found in process
[0706/175731.349:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/175731.350:ERROR:exception_snapshot_win.cc(98)] thread ID 19408 not found in process
[0706/175914.219:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/175914.220:ERROR:exception_snapshot_win.cc(98)] thread ID 22476 not found in process
[0706/180049.490:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/180049.491:ERROR:exception_snapshot_win.cc(98)] thread ID 14056 not found in process
[0706/180352.700:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/180352.702:ERROR:exception_snapshot_win.cc(98)] thread ID 17356 not found in process
[0706/180610.780:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/180610.782:ERROR:exception_snapshot_win.cc(98)] thread ID 13364 not found in process
[0706/180740.259:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/180740.261:ERROR:exception_snapshot_win.cc(98)] thread ID 5956 not found in process
[0706/181018.615:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/181018.618:ERROR:exception_snapshot_win.cc(98)] thread ID 16640 not found in process
[0706/181058.958:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/181058.959:ERROR:exception_snapshot_win.cc(98)] thread ID 19520 not found in process
[0706/181700.814:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/181700.815:ERROR:exception_snapshot_win.cc(98)] thread ID 20420 not found in process
[0706/181926.507:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/181926.509:ERROR:exception_snapshot_win.cc(98)] thread ID 22608 not found in process
[0706/182037.067:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/182037.068:ERROR:exception_snapshot_win.cc(98)] thread ID 10108 not found in process
[0706/182243.346:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/182243.348:ERROR:exception_snapshot_win.cc(98)] thread ID 11748 not found in process
[0706/182402.764:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/182402.766:ERROR:exception_snapshot_win.cc(98)] thread ID 18916 not found in process
[0706/182502.832:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/182502.834:ERROR:exception_snapshot_win.cc(98)] thread ID 8424 not found in process
[0706/182731.538:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/182731.539:ERROR:exception_snapshot_win.cc(98)] thread ID 17448 not found in process
[0706/183022.663:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/183022.664:ERROR:exception_snapshot_win.cc(98)] thread ID 24616 not found in process
[0706/183051.780:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/183051.782:ERROR:exception_snapshot_win.cc(98)] thread ID 16112 not found in process
[0706/183051.798:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/183051.798:ERROR:exception_snapshot_win.cc(98)] thread ID 2448 not found in process
[0706/183425.529:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/183425.530:ERROR:exception_snapshot_win.cc(98)] thread ID 22508 not found in process
[0706/183457.332:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/183457.334:ERROR:exception_snapshot_win.cc(98)] thread ID 24264 not found in process
[0706/183621.408:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/183621.410:ERROR:exception_snapshot_win.cc(98)] thread ID 17760 not found in process
[0706/183919.344:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/183919.346:ERROR:exception_snapshot_win.cc(98)] thread ID 21576 not found in process
[0706/184104.406:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/184104.407:ERROR:exception_snapshot_win.cc(98)] thread ID 24376 not found in process
[0706/184554.044:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/184554.046:ERROR:exception_snapshot_win.cc(98)] thread ID 3036 not found in process
[0706/184713.145:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/184713.147:ERROR:exception_snapshot_win.cc(98)] thread ID 9768 not found in process
[0706/184818.704:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/184818.706:ERROR:exception_snapshot_win.cc(98)] thread ID 24700 not found in process
[0706/184927.454:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/184927.454:ERROR:exception_snapshot_win.cc(98)] thread ID 12316 not found in process
[0706/184927.470:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/184927.470:ERROR:exception_snapshot_win.cc(98)] thread ID 20960 not found in process
[0706/185106.679:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/185106.681:ERROR:exception_snapshot_win.cc(98)] thread ID 21548 not found in process
[0706/185330.737:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/185330.740:ERROR:exception_snapshot_win.cc(98)] thread ID 7792 not found in process
[0706/185444.882:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/185444.884:ERROR:exception_snapshot_win.cc(98)] thread ID 1856 not found in process
[0706/185723.567:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/185723.569:ERROR:exception_snapshot_win.cc(98)] thread ID 14720 not found in process
[0706/190647.428:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/190647.429:ERROR:exception_snapshot_win.cc(98)] thread ID 7688 not found in process
[0706/191154.435:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/191154.436:ERROR:exception_snapshot_win.cc(98)] thread ID 21196 not found in process
[0706/191357.376:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/191357.377:ERROR:exception_snapshot_win.cc(98)] thread ID 17132 not found in process
[0706/191934.367:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/191934.369:ERROR:exception_snapshot_win.cc(98)] thread ID 19832 not found in process
[0706/192413.770:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/192413.773:ERROR:exception_snapshot_win.cc(98)] thread ID 20284 not found in process
[0706/193039.631:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/193039.633:ERROR:exception_snapshot_win.cc(98)] thread ID 20172 not found in process
[0706/193354.298:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/193354.299:ERROR:exception_snapshot_win.cc(98)] thread ID 15800 not found in process
[0706/193542.304:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/193542.306:ERROR:exception_snapshot_win.cc(98)] thread ID 14728 not found in process
[0706/193711.525:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/193711.527:ERROR:exception_snapshot_win.cc(98)] thread ID 16540 not found in process
[0706/195827.291:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/195827.991:ERROR:exception_snapshot_win.cc(98)] thread ID 21220 not found in process
[0706/195924.429:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/195924.430:ERROR:exception_snapshot_win.cc(98)] thread ID 19960 not found in process
[0706/200357.335:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/200357.336:ERROR:exception_snapshot_win.cc(98)] thread ID 10764 not found in process
[0706/200658.250:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/200658.252:ERROR:exception_snapshot_win.cc(98)] thread ID 2944 not found in process
[0706/201212.921:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/201212.923:ERROR:exception_snapshot_win.cc(98)] thread ID 3116 not found in process
[0706/202431.027:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/202431.029:ERROR:exception_snapshot_win.cc(98)] thread ID 9244 not found in process
[0706/202642.780:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/202642.782:ERROR:exception_snapshot_win.cc(98)] thread ID 12984 not found in process
[0706/202643.928:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/202643.932:ERROR:exception_snapshot_win.cc(98)] thread ID 6752 not found in process
[0706/202913.276:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/202913.278:ERROR:exception_snapshot_win.cc(98)] thread ID 25392 not found in process
[0706/223318.334:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0706/223318.376:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/223318.378:ERROR:exception_snapshot_win.cc(98)] thread ID 11968 not found in process
[0706/223318.394:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/223318.394:ERROR:exception_snapshot_win.cc(98)] thread ID 21036 not found in process
[0706/223434.270:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0706/223434.271:ERROR:exception_snapshot_win.cc(98)] thread ID 24824 not found in process
[0707/152410.458:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/152410.459:ERROR:exception_snapshot_win.cc(98)] thread ID 8008 not found in process
[0707/152706.253:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/152706.254:ERROR:exception_snapshot_win.cc(98)] thread ID 17256 not found in process
[0707/152931.400:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/152931.401:ERROR:exception_snapshot_win.cc(98)] thread ID 18928 not found in process
[0707/153213.435:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/153213.436:ERROR:exception_snapshot_win.cc(98)] thread ID 3304 not found in process
[0707/153254.188:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/153254.190:ERROR:exception_snapshot_win.cc(98)] thread ID 21344 not found in process
[0707/153439.135:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/153439.136:ERROR:exception_snapshot_win.cc(98)] thread ID 24852 not found in process
[0707/153453.477:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/153453.479:ERROR:exception_snapshot_win.cc(98)] thread ID 22204 not found in process
[0707/153548.462:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0707/153548.464:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/153548.464:ERROR:exception_snapshot_win.cc(98)] thread ID 19776 not found in process
[0707/153548.474:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/153548.474:ERROR:exception_snapshot_win.cc(98)] thread ID 24812 not found in process
[0707/161334.980:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/161334.987:ERROR:exception_snapshot_win.cc(98)] thread ID 21488 not found in process
[0707/161610.513:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/161610.514:ERROR:exception_snapshot_win.cc(98)] thread ID 3912 not found in process
[0707/161834.382:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/161834.384:ERROR:exception_snapshot_win.cc(98)] thread ID 15524 not found in process
[0707/162030.239:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/162030.240:ERROR:exception_snapshot_win.cc(98)] thread ID 21808 not found in process
[0707/162153.283:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/162153.285:ERROR:exception_snapshot_win.cc(98)] thread ID 22936 not found in process
[0707/162343.348:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/162343.349:ERROR:exception_snapshot_win.cc(98)] thread ID 17816 not found in process
[0707/162343.369:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/162343.369:ERROR:exception_snapshot_win.cc(98)] thread ID 5504 not found in process
[0707/162606.432:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/162606.433:ERROR:exception_snapshot_win.cc(98)] thread ID 23748 not found in process
[0707/162658.944:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/162658.945:ERROR:exception_snapshot_win.cc(98)] thread ID 3164 not found in process
[0707/163633.633:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/163633.769:ERROR:exception_snapshot_win.cc(98)] thread ID 20192 not found in process
[0707/163850.152:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/163850.153:ERROR:exception_snapshot_win.cc(98)] thread ID 24120 not found in process
[0707/164356.325:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/164356.326:ERROR:exception_snapshot_win.cc(98)] thread ID 19484 not found in process
[0707/164408.948:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/164408.949:ERROR:exception_snapshot_win.cc(98)] thread ID 22212 not found in process
[0707/193429.337:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/193429.434:ERROR:exception_snapshot_win.cc(98)] thread ID 1400 not found in process
[0707/194658.871:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/194658.873:ERROR:exception_snapshot_win.cc(98)] thread ID 20508 not found in process
[0707/213923.128:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/213923.217:ERROR:exception_snapshot_win.cc(98)] thread ID 23044 not found in process
[0707/213941.887:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/213941.889:ERROR:exception_snapshot_win.cc(98)] thread ID 13732 not found in process
[0707/214341.528:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/214341.530:ERROR:exception_snapshot_win.cc(98)] thread ID 17980 not found in process
[0707/214412.433:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/214412.434:ERROR:exception_snapshot_win.cc(98)] thread ID 20568 not found in process
[0707/215250.605:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/215250.607:ERROR:exception_snapshot_win.cc(98)] thread ID 2664 not found in process
[0707/220504.263:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/220504.265:ERROR:exception_snapshot_win.cc(98)] thread ID 23904 not found in process
[0707/220656.893:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0707/220656.895:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/220656.896:ERROR:exception_snapshot_win.cc(98)] thread ID 13416 not found in process
[0707/220657.241:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/220657.242:ERROR:exception_snapshot_win.cc(98)] thread ID 13700 not found in process
[0707/220839.727:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/220839.728:ERROR:exception_snapshot_win.cc(98)] thread ID 20848 not found in process
[0707/220839.772:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/220839.772:ERROR:exception_snapshot_win.cc(98)] thread ID 20660 not found in process
[0707/221023.022:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221023.162:ERROR:exception_snapshot_win.cc(98)] thread ID 6296 not found in process
[0707/221023.199:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221023.199:ERROR:exception_snapshot_win.cc(98)] thread ID 21520 not found in process
[0707/221155.177:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221155.179:ERROR:exception_snapshot_win.cc(98)] thread ID 4000 not found in process
[0707/221155.289:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221155.289:ERROR:exception_snapshot_win.cc(98)] thread ID 4092 not found in process
[0707/221326.585:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221326.588:ERROR:exception_snapshot_win.cc(98)] thread ID 12732 not found in process
[0707/221326.622:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221326.622:ERROR:exception_snapshot_win.cc(98)] thread ID 708 not found in process
[0707/221716.150:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221716.151:ERROR:exception_snapshot_win.cc(98)] thread ID 20208 not found in process
[0707/221716.190:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221716.190:ERROR:exception_snapshot_win.cc(98)] thread ID 10476 not found in process
[0707/221931.557:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221931.559:ERROR:exception_snapshot_win.cc(98)] thread ID 19832 not found in process
[0707/221931.595:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/221931.595:ERROR:exception_snapshot_win.cc(98)] thread ID 22036 not found in process
[0707/222214.564:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/222214.567:ERROR:exception_snapshot_win.cc(98)] thread ID 24908 not found in process
[0707/222214.603:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/222214.603:ERROR:exception_snapshot_win.cc(98)] thread ID 22848 not found in process
[0707/222459.412:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/222459.414:ERROR:exception_snapshot_win.cc(98)] thread ID 17324 not found in process
[0707/222459.447:ERROR:process_reader_win.cc(151)] SuspendThread: 拒绝访问。 (0x5)
[0707/222459.448:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/222459.448:ERROR:exception_snapshot_win.cc(98)] thread ID 24464 not found in process
[0707/222523.282:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/222523.283:ERROR:exception_snapshot_win.cc(98)] thread ID 14452 not found in process
[0707/222523.301:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/222523.301:ERROR:exception_snapshot_win.cc(98)] thread ID 5684 not found in process
[0707/222523.343:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0707/222523.343:ERROR:exception_snapshot_win.cc(98)] thread ID 16724 not found in process
[0708/174437.750:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/174437.789:ERROR:exception_snapshot_win.cc(98)] thread ID 18852 not found in process
[0708/174439.641:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/174439.641:ERROR:exception_snapshot_win.cc(98)] thread ID 6764 not found in process
[0708/174729.290:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/174729.291:ERROR:exception_snapshot_win.cc(98)] thread ID 24540 not found in process
[0708/174851.420:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/174851.422:ERROR:exception_snapshot_win.cc(98)] thread ID 7244 not found in process
[0708/175050.638:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/175050.639:ERROR:exception_snapshot_win.cc(98)] thread ID 14852 not found in process
[0708/175139.949:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/175139.950:ERROR:exception_snapshot_win.cc(98)] thread ID 20608 not found in process
[0708/175237.757:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/175237.758:ERROR:exception_snapshot_win.cc(98)] thread ID 9032 not found in process
[0708/175850.641:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/175850.643:ERROR:exception_snapshot_win.cc(98)] thread ID 24880 not found in process
[0708/180103.690:ERROR:process_reader_win.cc(123)] NtOpenThread: {无法访问} 过程已请求访问一对象,但未给访问权限。 (0xc0000022)
[0708/180103.692:ERROR:exception_snapshot_win.cc(98)] thread ID 21720 not found in process