commit | 1f34522aa8c20e4313f541ac998f2d09830f60c8 | [log] [tgz] |
---|---|---|
author | Brian Silverman <bsilver16384@gmail.com> | Thu Sep 24 21:14:48 2020 -0700 |
committer | Brian Silverman <bsilver16384@gmail.com> | Wed Sep 30 15:55:48 2020 -0700 |
tree | ee16291176495727f366c20f551bc87d791489ba | |
parent | 0465fcf7829f07fedb101be98a200d118f0025b8 [diff] [blame] |
Support stopping and starting logging at runtime Change-Id: If1e1b7119808d1f56e96efb71ea7000e0fa13fe8
diff --git a/aos/events/logging/uuid.cc b/aos/events/logging/uuid.cc index 9298c8b..376fa95 100644 --- a/aos/events/logging/uuid.cc +++ b/aos/events/logging/uuid.cc
@@ -57,4 +57,10 @@ return result; } +UUID UUID::Zero() { + UUID result; + result.data_.fill(0); + return result; +} + } // namespace aos