Commit 08fbceb7 authored by Brendan Gregg's avatar Brendan Gregg

remove unused MSG_MAX

parent c9d9a320
...@@ -256,7 +256,6 @@ prog = """ ...@@ -256,7 +256,6 @@ prog = """
#include <linux/sched.h> #include <linux/sched.h>
// define output data structure in C // define output data structure in C
#define MSG_MAX 32
struct data_t { struct data_t {
u32 pid; u32 pid;
u64 ts; u64 ts;
...@@ -283,7 +282,6 @@ b.attach_kprobe(event="sys_clone", fn_name="hello") ...@@ -283,7 +282,6 @@ b.attach_kprobe(event="sys_clone", fn_name="hello")
# define output data structure in Python # define output data structure in Python
TASK_COMM_LEN = 16 # linux/sched.h TASK_COMM_LEN = 16 # linux/sched.h
MSG_MAX = 32
class Data(ct.Structure): class Data(ct.Structure):
_fields_ = [("pid", ct.c_ulonglong), _fields_ = [("pid", ct.c_ulonglong),
("ts", ct.c_ulonglong), ("ts", ct.c_ulonglong),
......
...@@ -10,7 +10,6 @@ prog = """ ...@@ -10,7 +10,6 @@ prog = """
#include <linux/sched.h> #include <linux/sched.h>
// define output data structure in C // define output data structure in C
#define MSG_MAX 32
struct data_t { struct data_t {
u32 pid; u32 pid;
u64 ts; u64 ts;
...@@ -37,7 +36,6 @@ b.attach_kprobe(event="sys_clone", fn_name="hello") ...@@ -37,7 +36,6 @@ b.attach_kprobe(event="sys_clone", fn_name="hello")
# define output data structure in Python # define output data structure in Python
TASK_COMM_LEN = 16 # linux/sched.h TASK_COMM_LEN = 16 # linux/sched.h
MSG_MAX = 32
class Data(ct.Structure): class Data(ct.Structure):
_fields_ = [("pid", ct.c_ulonglong), _fields_ = [("pid", ct.c_ulonglong),
("ts", ct.c_ulonglong), ("ts", ct.c_ulonglong),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment