mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 01:37:00 +00:00
You should add two libraries into your server binaries: tbb.so/tbbmalloc.so on *nix and tbb(_debug).dll/tbbmalloc(_debug).dll on Windows!!! Define USE_STANDARD_MALLOC while compiling 'framework' project to use OS' default memory allocator! Signed-off-by: Ambal <pogrebniak@gala.net>
106 lines
4.5 KiB
C++
106 lines
4.5 KiB
C++
/*
|
|
Copyright 2005-2009 Intel Corporation. All Rights Reserved.
|
|
|
|
This file is part of Threading Building Blocks.
|
|
|
|
Threading Building Blocks is free software; you can redistribute it
|
|
and/or modify it under the terms of the GNU General Public License
|
|
version 2 as published by the Free Software Foundation.
|
|
|
|
Threading Building Blocks is distributed in the hope that it will be
|
|
useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Threading Building Blocks; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
As a special exception, you may use this file as part of a free software
|
|
library without restriction. Specifically, if other files instantiate
|
|
templates or use macros or inline functions from this file, or you compile
|
|
this file and link it with other files to produce an executable, this
|
|
file does not by itself cause the resulting executable to be covered by
|
|
the GNU General Public License. This exception does not however
|
|
invalidate any other reasons why the executable file might be covered by
|
|
the GNU General Public License.
|
|
*/
|
|
|
|
#ifndef __TBB_task_scheduler_init_H
|
|
#define __TBB_task_scheduler_init_H
|
|
|
|
#include "tbb_stddef.h"
|
|
|
|
namespace tbb {
|
|
|
|
typedef std::size_t stack_size_type;
|
|
|
|
//! @cond INTERNAL
|
|
namespace internal {
|
|
//! Internal to library. Should not be used by clients.
|
|
/** @ingroup task_scheduling */
|
|
class scheduler;
|
|
} // namespace internal
|
|
//! @endcond
|
|
|
|
//! Class representing reference to tbb scheduler.
|
|
/** A thread must construct a task_scheduler_init, and keep it alive,
|
|
during the time that it uses the services of class task.
|
|
@ingroup task_scheduling */
|
|
class task_scheduler_init: internal::no_copy {
|
|
/** NULL if not currently initialized. */
|
|
internal::scheduler* my_scheduler;
|
|
public:
|
|
|
|
//! Typedef for number of threads that is automatic.
|
|
static const int automatic = -1;
|
|
|
|
//! Argument to initialize() or constructor that causes initialization to be deferred.
|
|
static const int deferred = -2;
|
|
|
|
//! Ensure that scheduler exists for this thread
|
|
/** A value of -1 lets tbb decide on the number of threads, which is typically
|
|
the number of hardware threads. For production code, the default value of -1
|
|
should be used, particularly if the client code is mixed with third party clients
|
|
that might also use tbb.
|
|
|
|
The number_of_threads is ignored if any other task_scheduler_inits
|
|
currently exist. A thread may construct multiple task_scheduler_inits.
|
|
Doing so does no harm because the underlying scheduler is reference counted. */
|
|
void __TBB_EXPORTED_METHOD initialize( int number_of_threads=automatic );
|
|
|
|
//! The overloaded method with stack size parameter
|
|
/** Overloading is necessary to preserve ABI compatibility */
|
|
void __TBB_EXPORTED_METHOD initialize( int number_of_threads, stack_size_type thread_stack_size );
|
|
|
|
//! Inverse of method initialize.
|
|
void __TBB_EXPORTED_METHOD terminate();
|
|
|
|
//! Shorthand for default constructor followed by call to intialize(number_of_threads).
|
|
task_scheduler_init( int number_of_threads=automatic, stack_size_type thread_stack_size=0 ) : my_scheduler(NULL) {
|
|
initialize( number_of_threads, thread_stack_size );
|
|
}
|
|
|
|
//! Destroy scheduler for this thread if thread has no other live task_scheduler_inits.
|
|
~task_scheduler_init() {
|
|
if( my_scheduler )
|
|
terminate();
|
|
internal::poison_pointer( my_scheduler );
|
|
}
|
|
//! Returns the number of threads tbb scheduler would create if initialized by default.
|
|
/** Result returned by this method does not depend on whether the scheduler
|
|
has already been initialized.
|
|
|
|
Because tbb 2.0 does not support blocking tasks yet, you may use this method
|
|
to boost the number of threads in the tbb's internal pool, if your tasks are
|
|
doing I/O operations. The optimal number of additional threads depends on how
|
|
much time your tasks spend in the blocked state. */
|
|
static int __TBB_EXPORTED_FUNC default_num_threads ();
|
|
|
|
//! Returns true if scheduler is active (initialized); false otherwise
|
|
bool is_active() const { return my_scheduler != NULL; }
|
|
};
|
|
|
|
} // namespace tbb
|
|
|
|
#endif /* __TBB_task_scheduler_init_H */
|