()
| 23 | } |
| 24 | |
| 25 | func (this *SyscallEvent) ParseEvent() (IEventStruct, error) { |
| 26 | data_e, err := this.ContextEvent.ParseEvent() |
| 27 | if err != nil { |
| 28 | panic("...") |
| 29 | } |
| 30 | if data_e == nil { |
| 31 | if err := this.ParseContext(); err != nil { |
| 32 | panic(fmt.Sprintf("SyscallEvent.ParseContext() err:%v", err)) |
| 33 | } |
| 34 | return this, nil |
| 35 | } |
| 36 | return data_e, nil |
| 37 | } |
| 38 | |
| 39 | func (this *SyscallEvent) ParseContext() (err error) { |
| 40 | this.ReadArg(&this.NR) |
nothing calls this directly
no test coverage detected