diff options
author | hunt <hunt> | 2006-03-06 20:38:07 +0000 |
---|---|---|
committer | hunt <hunt> | 2006-03-06 20:38:07 +0000 |
commit | 1246de26e1d4244521888a13042c925ad5cd3734 (patch) | |
tree | 727fd77b3c08f79998d248037340a45f9383c883 | |
parent | e062491bddb39fe955998ed5841d041ae4224852 (diff) | |
download | systemtap-steved-1246de26e1d4244521888a13042c925ad5cd3734.tar.gz systemtap-steved-1246de26e1d4244521888a13042c925ad5cd3734.tar.xz systemtap-steved-1246de26e1d4244521888a13042c925ad5cd3734.zip |
2006-03-06 Martin Hunt <hunt@redhat.com>
* transport_msgs.h (struct cmd_info): New message.
-rw-r--r-- | runtime/transport/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/transport/transport_msgs.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/runtime/transport/ChangeLog b/runtime/transport/ChangeLog index c1eca3fd..6ad6261d 100644 --- a/runtime/transport/ChangeLog +++ b/runtime/transport/ChangeLog @@ -1,3 +1,7 @@ +2006-03-06 Martin Hunt <hunt@redhat.com> + + * transport_msgs.h (struct cmd_info): New message. + 2006-02-25 Martin Hunt <hunt@redhat.com> * procfs.c (_stp_proc_write_cmd): Check return code for diff --git a/runtime/transport/transport_msgs.h b/runtime/transport/transport_msgs.h index 63faac31..c27b8002 100644 --- a/runtime/transport/transport_msgs.h +++ b/runtime/transport/transport_msgs.h @@ -15,6 +15,7 @@ enum STP_START, STP_EXIT, STP_OOB_DATA, + STP_SYSTEM, }; /* control channel command structs */ @@ -48,3 +49,8 @@ struct transport_start int pid; // pid for streaming data }; +struct cmd_info +{ + char cmd[128]; +}; + |