summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2003-07-23 19:44:14 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2003-07-23 19:44:14 +0000
commit85138ff960bae4ef67f00003e505db5f4db266ad (patch)
tree20c86ac2801d5621ab7fc697cdd748522b0e54e3 /ace
parent1388e35d5a08c08ec4f276b06593a6caa2520fde (diff)
downloadATCD-85138ff960bae4ef67f00003e505db5f4db266ad.tar.gz
ChangeLogTag:Wed Jul 23 12:43:48 2003 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace')
-rw-r--r--ace/UUID.cpp31
1 files changed, 18 insertions, 13 deletions
diff --git a/ace/UUID.cpp b/ace/UUID.cpp
index 1eae884f3fe..e57d009287d 100644
--- a/ace/UUID.cpp
+++ b/ace/UUID.cpp
@@ -3,11 +3,16 @@
#include "ace/Log_Msg.h"
#include "ace/UUID.h"
+ACE_RCSID (ace,
+ UUID,
+ "$Id$")
+
+
UUID_node::UUID_node (void)
{
- for (int i = 0; i < 6; i++)
+ for (int i = 0; i < UUID_node::NODE_ID_SIZE; ++i)
{
- nodeID_ [i] = 0;
+ nodeID_[i] = 0;
}
}
@@ -20,9 +25,9 @@ UUID_node::nodeID (void)
void
UUID_node::nodeID (NodeID& nodeID)
{
- for (int i = 0; i < 6; i++)
+ for (int i = 0; i < UUID_node::NODE_ID_SIZE; ++i)
{
- nodeID_ [i] = nodeID [i];
+ nodeID_[i] = nodeID[i];
}
}
@@ -30,7 +35,7 @@ ACE_UUID ACE_UUID::NIL_UUID;
/// Construct a nil UUID. Such a UUID has every one of it's data
/// elements set to zero.
-ACE_UUID::ACE_UUID()
+ACE_UUID::ACE_UUID(void)
: timeLow_ (0),
timeMid_ (0),
timeHiAndVersion_ (0),
@@ -87,12 +92,12 @@ ACE_UUID::ACE_UUID (const ACE_CString& uuid_string)
return;
}
- int timeLow;
- int timeMid;
- int timeHiAndVersion;
- int clockSeqHiAndReserved;
- int clockSeqLow;
- int node [UUID_node::NODE_ID_SIZE];
+ unsigned int timeLow;
+ unsigned int timeMid;
+ unsigned int timeHiAndVersion;
+ unsigned int clockSeqHiAndReserved;
+ unsigned int clockSeqLow;
+ unsigned int node [UUID_node::NODE_ID_SIZE];
char thr_pid_buf [BUFSIZ];
if (uuid_string.length() == NIL_UUID.to_string()->length())
@@ -196,7 +201,7 @@ ACE_UUID::ACE_UUID (const ACE_CString& uuid_string)
this->clockSeqLow_ = ACE_static_cast (u_char, clockSeqLow);
UUID_node::NodeID nodeID;
- for (int i = 0; i < UUID_node::NODE_ID_SIZE; i++)
+ for (int i = 0; i < UUID_node::NODE_ID_SIZE; ++i)
nodeID [i] = ACE_static_cast (u_char, node[i]);
this->node_->nodeID (nodeID);
@@ -473,7 +478,7 @@ ACE_UUID_Generator::get_timestamp (UUID_time& timestamp)
* 122192928000000000U (0x1B21DD213814000) 100 ns ticks.
*/
void
-ACE_UUID_Generator::get_systemtime(UUID_time& timestamp)
+ACE_UUID_Generator::get_systemtime (UUID_time & timestamp)
{
const UUID_time timeOffset = 0;
//const UUID_time timeOffset = 0x1B21DD213814000;