summaryrefslogtreecommitdiff
path: root/ace/Memory_Pool.h
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commita7c03cabf931b077d70c6f80ec02c7728a429f49 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/Memory_Pool.h
parent2aa7b10780ad7c670f588dce4ec341351a0646aa (diff)
downloadATCD-a7c03cabf931b077d70c6f80ec02c7728a429f49.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Memory_Pool.h')
-rw-r--r--ace/Memory_Pool.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/ace/Memory_Pool.h b/ace/Memory_Pool.h
index 3b1e28cb081..26d19faef84 100644
--- a/ace/Memory_Pool.h
+++ b/ace/Memory_Pool.h
@@ -49,7 +49,7 @@ class ACE_Export ACE_Sbrk_Memory_Pool
public:
typedef ACE_Sbrk_Memory_Pool_Options OPTIONS;
- ACE_Sbrk_Memory_Pool (LPCTSTR backing_store_name = 0,
+ ACE_Sbrk_Memory_Pool (const ACE_TCHAR *backing_store_name = 0,
const OPTIONS *options = 0);
// Initialize the pool.
@@ -143,7 +143,7 @@ class ACE_Export ACE_Shared_Memory_Pool : public ACE_Event_Handler
public:
typedef ACE_Shared_Memory_Pool_Options OPTIONS;
- ACE_Shared_Memory_Pool (LPCTSTR backing_store_name = 0,
+ ACE_Shared_Memory_Pool (const ACE_TCHAR *backing_store_name = 0,
const OPTIONS *options = 0);
// Initialize the pool.
@@ -268,7 +268,7 @@ class ACE_Export ACE_Local_Memory_Pool
public:
typedef ACE_Local_Memory_Pool_Options OPTIONS;
- ACE_Local_Memory_Pool (LPCTSTR backing_store_name = 0,
+ ACE_Local_Memory_Pool (const ACE_TCHAR *backing_store_name = 0,
const OPTIONS *options = 0);
// Initialize the pool.
@@ -387,7 +387,7 @@ public:
// = Initialization and termination methods.
- ACE_MMAP_Memory_Pool (LPCTSTR backing_store_name = 0,
+ ACE_MMAP_Memory_Pool (const ACE_TCHAR *backing_store_name = 0,
const OPTIONS *options = 0);
// Initialize the pool.
@@ -490,7 +490,7 @@ protected:
off_t minimum_bytes_;
// What the minimum bytes of the initial segment should be.
- TCHAR backing_store_name_[MAXPATHLEN + 1];
+ ACE_TCHAR backing_store_name_[MAXPATHLEN + 1];
// Name of the backing store where the shared memory pool is kept.
int guess_on_fault_;
@@ -518,7 +518,7 @@ class ACE_Export ACE_Lite_MMAP_Memory_Pool : public ACE_MMAP_Memory_Pool
public:
// = Initialization and termination methods.
- ACE_Lite_MMAP_Memory_Pool (LPCTSTR backing_store_name = 0,
+ ACE_Lite_MMAP_Memory_Pool (const ACE_TCHAR *backing_store_name = 0,
const OPTIONS *options = 0);
// Initialize the pool.
@@ -561,7 +561,7 @@ class ACE_Export ACE_Pagefile_Memory_Pool
public:
typedef ACE_Pagefile_Memory_Pool_Options OPTIONS;
- ACE_Pagefile_Memory_Pool (LPCTSTR backing_store_name = 0,
+ ACE_Pagefile_Memory_Pool (const ACE_TCHAR *backing_store_name = 0,
const OPTIONS *options = 0);
// Initialize the pool.
@@ -661,7 +661,7 @@ private:
size_t page_size_;
// System page size.
- TCHAR backing_store_name_[MAXPATHLEN];
+ ACE_TCHAR backing_store_name_[MAXPATHLEN];
// Name of the backing store where the shared memory pool is kept.
};