Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
1d234802
Commit
1d234802
authored
Oct 11, 2018
by
yonghong-song
Committed by
GitHub
Oct 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix killsnoop.py srr/bytes type error (#2007)
Fix issue #2002 Signed-off-by:
Yonghong Song
<
yhs@fb.com
>
parent
d4b23876
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tools/killsnoop.py
tools/killsnoop.py
+1
-1
No files found.
tools/killsnoop.py
View file @
1d234802
...
...
@@ -139,7 +139,7 @@ def print_event(cpu, data, size):
if
(
args
.
failed
and
(
event
.
ret
>=
0
)):
return
printb
(
b"%-9s %-6d %-16s %-4d %-6d %d"
%
(
strftime
(
"%H:%M:%S"
),
printb
(
b"%-9s %-6d %-16s %-4d %-6d %d"
%
(
strftime
(
"%H:%M:%S"
)
.
encode
(
'ascii'
)
,
event
.
pid
,
event
.
comm
,
event
.
sig
,
event
.
tpid
,
event
.
ret
))
# loop with callback to print_event
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment