diff options
Diffstat (limited to 'src/global.go')
-rw-r--r-- | src/global.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/global.go b/src/global.go index f0f909c..a266b1b 100644 --- a/src/global.go +++ b/src/global.go | |||
@@ -33,12 +33,13 @@ type Event struct { | |||
33 | timestamp time.Time | 33 | timestamp time.Time |
34 | pid, ppid int | 34 | pid, ppid int |
35 | syscall int | 35 | syscall int |
36 | exit_code uint64 | 36 | syscallParam [4]uint64 |
37 | pathName string | ||
37 | argc int | 38 | argc int |
38 | argv []string | 39 | argv []string |
39 | cwd string | 40 | cwd string |
40 | syscallParam [4]uint64 | 41 | exit_code uint64 |
41 | pathName string | 42 | exit_signal int |
42 | } | 43 | } |
43 | 44 | ||
44 | func (event Event) String() string { | 45 | func (event Event) String() string { |