diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-11 00:25:35 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1996-12-11 00:25:35 +0000 |
commit | 7713d27a5142c981b7261534693a6cc2951c7896 (patch) | |
tree | d252969bc911b62d8f9a8260738ce06cbdee5f61 /examples | |
parent | 3bcb8826f01687dfa4a336e095bcaf7f5012bd7b (diff) | |
download | ATCD-7713d27a5142c981b7261534693a6cc2951c7896.tar.gz |
foo
Diffstat (limited to 'examples')
-rw-r--r-- | examples/Shared_Malloc/test_multiple_mallocs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Shared_Malloc/test_multiple_mallocs.cpp b/examples/Shared_Malloc/test_multiple_mallocs.cpp index ebedd12ae49..e4d769a93e6 100644 --- a/examples/Shared_Malloc/test_multiple_mallocs.cpp +++ b/examples/Shared_Malloc/test_multiple_mallocs.cpp @@ -11,12 +11,12 @@ typedef ACE_Malloc <ACE_MMAP_MEMORY_POOL, ACE_Process_Mutex> MALLOC; // Default address for shared memory mapped files and SYSV shared // memory (defaults to 64 M). -const char *REQUEST_BASE_ADDR = ((char *) (64 * 1024 * 1024)); +void *REQUEST_BASE_ADDR = ((void *) (64 * 1024 * 1024)); const char *REQUEST_STRING = "hello from request repository"; // Default address for shared memory mapped files and SYSV shared // memory (defaults to 64 M). -const char *RESPONSE_BASE_ADDR = ((char *) (128 * 1024 * 1024)); +void *RESPONSE_BASE_ADDR = ((void *) (128 * 1024 * 1024)); const char *RESPONSE_STRING = "hello from response repository"; int |