Server IP : 104.21.38.3 / Your IP : 162.158.170.92 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/pool/ |
Upload File : |
// Copyright (C) 2000, 2001 Stephen Cleary // // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org for updates, documentation, and revision history. #ifndef BOOST_POOLFWD_HPP #define BOOST_POOLFWD_HPP /*! \file \brief Forward declarations of all public (non-implemention) classes. */ #include <boost/config.hpp> // for workarounds // std::size_t #include <cstddef> // boost::details::pool::default_mutex #include <boost/pool/detail/mutex.hpp> namespace boost { // // Location: <boost/pool/simple_segregated_storage.hpp> // template <typename SizeType = std::size_t> class simple_segregated_storage; // // Location: <boost/pool/pool.hpp> // struct default_user_allocator_new_delete; struct default_user_allocator_malloc_free; template <typename UserAllocator = default_user_allocator_new_delete> class pool; // // Location: <boost/pool/object_pool.hpp> // template <typename T, typename UserAllocator = default_user_allocator_new_delete> class object_pool; // // Location: <boost/pool/singleton_pool.hpp> // template <typename Tag, unsigned RequestedSize, typename UserAllocator = default_user_allocator_new_delete, typename Mutex = details::pool::default_mutex, unsigned NextSize = 32, unsigned MaxSize = 0> class singleton_pool; // // Location: <boost/pool/pool_alloc.hpp> // struct pool_allocator_tag; template <typename T, typename UserAllocator = default_user_allocator_new_delete, typename Mutex = details::pool::default_mutex, unsigned NextSize = 32, unsigned MaxSize = 0> class pool_allocator; struct fast_pool_allocator_tag; template <typename T, typename UserAllocator = default_user_allocator_new_delete, typename Mutex = details::pool::default_mutex, unsigned NextSize = 32, unsigned MaxSize = 0> class fast_pool_allocator; } // namespace boost #endif