diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-02 23:19:51 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-11-02 23:19:51 +0000 |
commit | ef08e40a4ca020201fbe271acd6505e9d57a4ec8 (patch) | |
tree | 0f3b1f0784091ff690ed1e1075248b09e76fb4ae /ace/Memory_Pool.cpp | |
parent | fe2654b0d176fb2e80143e237d92b3a955155e98 (diff) | |
download | ATCD-ef08e40a4ca020201fbe271acd6505e9d57a4ec8.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Memory_Pool.cpp')
-rw-r--r-- | ace/Memory_Pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp index 975f4d9d7da..abef1e91185 100644 --- a/ace/Memory_Pool.cpp +++ b/ace/Memory_Pool.cpp @@ -724,7 +724,7 @@ ACE_Shared_Memory_Pool::release (void) for (size_t counter = 0; counter < this->max_segments_ && st[counter].used_ == 1; counter++) - if (ACE_OS::shmctl (st[counter].shmid_, IPC_RMID, NULL) == -1) + if (ACE_OS::shmctl (st[counter].shmid_, IPC_RMID, 0) == -1) result = -1; return result; |