diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-01-07 13:05:37 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-01-07 13:05:37 -0500 |
commit | f456c7983ded455b006d25a9c5e17401f6c22dca (patch) | |
tree | 622f60618aa3158e8f4d757e3dcc3536a5bb3057 /src/proto/SConscript | |
parent | 11ab30fa5a4f56e4f7ea3b5b51e529bc246d1d35 (diff) | |
download | gem5-f456c7983ded455b006d25a9c5e17401f6c22dca.tar.xz |
mem: Add tracing support in the communication monitor
This patch adds packet tracing to the communication monitor using a
protobuf as the mechanism for creating the trace.
If no file is specified, then the tracing is disabled. If a file is
specified, then for every packet that is successfully sent, a protobuf
message is serialized to the file.
Diffstat (limited to 'src/proto/SConscript')
-rw-r--r-- | src/proto/SConscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/SConscript b/src/proto/SConscript index ade891737..9bb6fd428 100644 --- a/src/proto/SConscript +++ b/src/proto/SConscript @@ -41,4 +41,5 @@ Import('*') # Only build if we have protobuf support if env['HAVE_PROTOBUF']: + ProtoBuf('packet.proto') Source('protoio.cc') |