@@ -625,7 +625,6 @@ func (e Event) StateTransition() StateTransition {
625
625
s = goStateTransition (GoID (e .base .args [0 ]), GoRunnable , GoRunning )
626
626
case tracev2 .EvGoDestroy :
627
627
s = goStateTransition (e .ctx .G , GoRunning , GoNotExist )
628
- s .Stack = e .Stack () // This event references the resource the event happened on.
629
628
case tracev2 .EvGoDestroySyscall :
630
629
s = goStateTransition (e .ctx .G , GoSyscall , GoNotExist )
631
630
case tracev2 .EvGoStop :
@@ -646,10 +645,8 @@ func (e Event) StateTransition() StateTransition {
646
645
s .Stack = e .Stack () // This event references the resource the event happened on.
647
646
case tracev2 .EvGoSyscallEnd :
648
647
s = goStateTransition (e .ctx .G , GoSyscall , GoRunning )
649
- s .Stack = e .Stack () // This event references the resource the event happened on.
650
648
case tracev2 .EvGoSyscallEndBlocked :
651
649
s = goStateTransition (e .ctx .G , GoSyscall , GoRunnable )
652
- s .Stack = e .Stack () // This event references the resource the event happened on.
653
650
case tracev2 .EvGoStatus , tracev2 .EvGoStatusStack :
654
651
packedStatus := e .base .args [2 ]
655
652
from , to := packedStatus >> 32 , packedStatus & ((1 << 32 )- 1 )
0 commit comments