diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-25 18:04:27 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-25 18:04:27 +0000 |
commit | 69d27aed17f321b837a9d3fc62f88cbbf439d898 (patch) | |
tree | 2832047ced37f9bc81eb12ef0a9d1b066840c744 /ace/Memory_Pool.h | |
parent | 2a62e19c84f3af442ac632a18d4ced8b46de63e2 (diff) | |
download | ATCD-69d27aed17f321b837a9d3fc62f88cbbf439d898.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Memory_Pool.h')
-rw-r--r-- | ace/Memory_Pool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Memory_Pool.h b/ace/Memory_Pool.h index 9597dd61d28..ac9b9f26617 100644 --- a/ace/Memory_Pool.h +++ b/ace/Memory_Pool.h @@ -473,10 +473,10 @@ public: const OPTIONS *options = 0); // Initialize the pool. - int sync (ssize_t len = -1, int flags = MS_SYNC); + virtual int sync (ssize_t len = -1, int flags = MS_SYNC); // Overwrite the default sync behavior with no-op - int sync (void *addr, size_t len, int flags = MS_SYNC); + virtual int sync (void *addr, size_t len, int flags = MS_SYNC); // Overwrite the default sync behavior with no-op }; |