diff options
author | Andrew Stitcher <astitcher@apache.org> | 2010-04-23 03:59:52 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2010-04-23 03:59:52 +0000 |
commit | fbbda16ce5d06ebebc7d6eabdbd0769a3d886cb8 (patch) | |
tree | 7243947a60c12915121bb3f6b21fc40c7d4af72c /cpp/src/qmf/engine/ObjectImpl.cpp | |
parent | 0251793e6387b741424787ae4902994fd2f46e9f (diff) | |
download | qpid-python-fbbda16ce5d06ebebc7d6eabdbd0769a3d886cb8.tar.gz |
QPID-1904: Ensure that all timestamp uses are correctly relative to 1/1/1970 epoch.
- Removed the hacky way to access the internal time value in AbsTime now that there
is a defined AbsTime value EPOCH.
- Changed all the code to use Duration(EPOCH, abtime)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@937147 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf/engine/ObjectImpl.cpp')
-rw-r--r-- | cpp/src/qmf/engine/ObjectImpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qmf/engine/ObjectImpl.cpp b/cpp/src/qmf/engine/ObjectImpl.cpp index cae0e0da68..45925cb804 100644 --- a/cpp/src/qmf/engine/ObjectImpl.cpp +++ b/cpp/src/qmf/engine/ObjectImpl.cpp @@ -27,7 +27,7 @@ using namespace qmf::engine; using namespace qpid::sys; using qpid::framing::Buffer; -ObjectImpl::ObjectImpl(const SchemaObjectClass* type) : objectClass(type), broker(0), createTime(uint64_t(Duration(now()))), destroyTime(0), lastUpdatedTime(createTime) +ObjectImpl::ObjectImpl(const SchemaObjectClass* type) : objectClass(type), broker(0), createTime(uint64_t(Duration(EPOCH, now()))), destroyTime(0), lastUpdatedTime(createTime) { int propCount = objectClass->getPropertyCount(); int statCount = objectClass->getStatisticCount(); @@ -93,7 +93,7 @@ ObjectImpl::~ObjectImpl() void ObjectImpl::destroy() { - destroyTime = uint64_t(Duration(now())); + destroyTime = uint64_t(Duration(EPOCH, now())); // TODO - flag deletion } |