(file) Return to Memory.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Memory.h between version 1.8 and 1.22

version 1.8, 2001/07/10 22:31:14 version 1.22, 2006/01/30 16:17:05
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2006////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002 BMC Software; Hewlett-Packard Development
   // Company, L.P.; IBM Corp.; The Open Group; Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation, The Open Group.
   // Copyright (c) 2004 BMC Software; Hewlett-Packard Development Company, L.P.;
   // IBM Corp.; EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2005 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; VERITAS Software Corporation; The Open Group.
   // Copyright (c) 2006 Hewlett-Packard Development Company, L.P.; IBM Corp.;
   // EMC Corporation; Symantec Corporation; The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 22 
Line 31 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: David Dillard, VERITAS Software Corp.
   //                  (david.dillard@veritas.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 46 
Line 56 
 #define Pegasus_Memory_h #define Pegasus_Memory_h
  
 #include <cstring> #include <cstring>
   #include <memory.h>
 #include <Pegasus/Common/Config.h> #include <Pegasus/Common/Config.h>
 #include <Pegasus/Common/CIMType.h> #include <Pegasus/Common/CIMType.h>
 #include <Pegasus/Common/Char16.h> #include <Pegasus/Common/Char16.h>
Line 66 
Line 77 
 } }
  
 template<class T> template<class T>
 inline void Destroy(T* ptr)  inline void CopyToRaw(T* to, const T* from, Uint32 size)
   {
       while (size--)
 { {
     ptr->~T();          // The following fails on TRU64:
           //     new(to++) T(*from++);
           // Probably a compiler error so I changed it to this:
           // Mike Brasher
   
           new(to) T(*from);
           to++;
           from++;
       }
 } }
  
 template<class T, class U>  inline void CopyToRaw(char* to, const char* from, Uint32 size)
 inline void CopyToRaw(T* to, const U* from, Uint32 size)  
 { {
     while (size--)      memcpy(to, from, sizeof(char) * size);
         new(to++) T(*from++);  
 } }
  
 inline void CopyToRaw(Boolean* to, const Boolean* from, Uint32 size) inline void CopyToRaw(Boolean* to, const Boolean* from, Uint32 size)
Line 142 
Line 161 
 inline void InitializeRaw(T* items, Uint32 size) inline void InitializeRaw(T* items, Uint32 size)
 { {
     while (size--)     while (size--)
         items++->~T();      {
           new(items) T();
           items++;
       }
 } }
  
 #define PEGASUS_MEMORY_FUNCTIONS(T) \ #define PEGASUS_MEMORY_FUNCTIONS(T) \
     inline void Destroy(T*, Uint32) { } \     inline void Destroy(T*, Uint32) { } \
     inline void Destroy(T*) { } \  
     inline void InitializeRaw(T* items, Uint32 size) { Zeros(items, size); }     inline void InitializeRaw(T* items, Uint32 size) { Zeros(items, size); }
  
 PEGASUS_MEMORY_FUNCTIONS(char*) PEGASUS_MEMORY_FUNCTIONS(char*)


Legend:
Removed from v.1.8  
changed lines
  Added in v.1.22

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2