concurrency Namespace
The Concurrency namespace provides classes and functions that give you access to the Concurrency Runtime, a concurrent programming framework for C++. For more information, see Concurrency Runtime.
namespace concurrency;
Members
Namespaces
Name |
Description |
---|---|
concurrency::extensibility Namespace |
Typedefs
Name |
Description |
---|---|
runtime_object_identity |
Each message instance has an identity that follows it as it is cloned and passed between messaging components. This cannot be the address of the message object. |
task_status |
A type that represents the terminal state of a task. Valid values are completed and canceled. |
TaskProc |
An elementary abstraction for a task, defined as void (__cdecl * TaskProc)(void *). A TaskProc is called to invoke the body of a task. |
TaskProc_t |
An elementary abstraction for a task, defined as void (__cdecl * TaskProc_t)(void *). A TaskProc is called to invoke the body of a task. |
Classes
Name |
Description |
---|---|
The affinity_partitioner class is similar to the static_partitioner class, but it improves cache affinity by its choice of mapping subranges to worker threads. It can improve performance significantly when a loop is re-executed over the same data set, and the data fits in cache. Note that the same affinity_partitioner object must be used with subsequent iterations of a parallel loop that is executed over a particular data set, to benefit from data locality. |
|
A class intended to be used as a base class for all independent agents. It is used to hide state from other agents and interact using message-passing. |
|
The auto_partitioner class represents the default method parallel_for, parallel_for_each and parallel_transform use to partition the range they iterates over. This method of partitioning employes range stealing for load balancing as well as per-iterate cancellation. |
|
This class describes an exception thrown when a messaging block is given a pointer to a target which is invalid for the operation being performed. |
|
A call messaging block is a multi-source, ordered target_block that invokes a specified function when receiving a message. |
|
The cancellation_token class represents the ability to determine whether some operation has been requested to cancel. A given token can be associated with a task_group, structured_task_group, or task to provide implicit cancellation. It can also be polled for cancellation or have a callback registered for if and when the associated cancellation_token_source is canceled. |
|
The cancellation_token_registration class represents a callback notification from a cancellation_token. When the register method on a cancellation_token is used to receive notification of when cancellation occurs, a cancellation_token_registration object is returned as a handle to the callback so that the caller can request a specific callback no longer be made through use of the deregister method. |
|
The cancellation_token_source class represents the ability to cancel some cancelable operation. |
|
A choice messaging block is a multi-source, single-target block that represents a control-flow interaction with a set of sources. The choice block will wait for any one of multiple sources to produce a message and will propagate the index of the source that produced the message. |
|
The combinable<T> object is intended to provide thread-private copies of data, to perform lock-free thread-local sub-computations during parallel algorithms. At the end of the parallel operation, the thread-private sub-computations can then be merged into a final result. This class can be used instead of a shared variable, and can result in a performance improvement if there would otherwise be a lot of contention on that shared variable. |
|
The concurrent_priority_queue class is a container that allows multiple threads to concurrently push and pop items. Items are popped in priority order where priority is determined by a functor supplied as a template argument. |
|
The concurrent_queue class is a sequence container class that allows first-in, first-out access to its elements. It enables a limited set of concurrency-safe operations, such as push and try_pop. |
|
The concurrent_unordered_map class is a concurrency-safe container that controls a varying-length sequence of elements of type std::pair<const _Key_type, _Element_type>. The sequence is represented in a way that enables concurrency-safe append, element access, iterator access, and iterator traversal operations. |
|
The concurrent_unordered_multimap class is an concurrency-safe container that controls a varying-length sequence of elements of type std::pair<const _Key_type, _Element_type>. The sequence is represented in a way that enables concurrency-safe append, element access, iterator access and iterator traversal operations. |
|
The concurrent_unordered_multiset class is an concurrency-safe container that controls a varying-length sequence of elements of type _Key_type. The sequence is represented in a way that enables concurrency-safe append, element access, iterator access and iterator traversal operations. |
|
The concurrent_unordered_set class is an concurrency-safe container that controls a varying-length sequence of elements of type _Key_type. The sequence is represented in a way that enables concurrency-safe append, element access, iterator access and iterator traversal operations. |
|
The concurrent_vector class is a sequence container class that allows random access to any element. It enables concurrency-safe append, element access, iterator access, and iterator traversal operations. |
|
Represents an abstraction for an execution context. |
|
This class describes an exception thrown when the Unblock method of a Context object is called from the same context. This would indicate an attempt by a given context to unblock itself. |
|
This class describes an exception thrown when calls to the Block and Unblock methods of a Context object are not properly paired. |
|
A non-reentrant mutex which is explicitly aware of the Concurrency Runtime. |
|
Represents an abstraction for the current scheduler associated with the calling context. |
|
This class describes an exception thrown when the Scheduler::SetDefaultSchedulerPolicy method is called when a default scheduler already exists within the process. |
|
A manual reset event which is explicitly aware of the Concurrency Runtime. |
|
This class describes an exception thrown when a lock is acquired improperly. |
|
This class describes an exception thrown when the Attach method is called on a Scheduler object which is already attached to the current context. |
|
This class describes an exception thrown when the CurrentScheduler::Detach method is called on a context which has not been attached to any scheduler using the Attach method of a Scheduler object. |
|
This class describes an exception thrown when the Reference method is called on a Scheduler object that is shutting down, from a context that is not part of that scheduler. |
|
This class describes an exception thrown when the link_target method of a messaging block is called and the messaging block is unable to link to the target. This can be the result of exceeding the number of links the messaging block is allowed or attempting to link a specific target twice to the same source. |
|
This class describes an exception thrown when a task_handle object is scheduled multiple times using the run method of a task_group or structured_task_group object without an intervening call to either the wait or run_and_wait methods. |
|
This class describes an exception thrown when an invalid operation is performed that is not more accurately described by another exception type thrown by the Concurrency Runtime. |
|
This class describes an exception thrown when the Context::Oversubscribe method is called with the _BeginOversubscription parameter set to false without a prior call to the Context::Oversubscribe method with the _BeginOversubscription parameter set to true. |
|
This class describes an exception thrown when an invalid or unknown key is passed to a SchedulerPolicy object constructor, or the SetPolicyValue method of a SchedulerPolicy object is passed a key that must be changed using other means such as the SetConcurrencyLimits method. |
|
This class describes an exception thrown when an attempt is made to set the concurrency limits of a SchedulerPolicy object such that the value of the MinConcurrency key is less than the value of the MaxConcurrency key. |
|
This class describes an exception thrown when a policy key of a SchedulerPolicy object is set to an invalid value for that key. |
|
The ISource class is the interface for all source blocks. Source blocks propagate messages to ITarget blocks. |
|
The ITarget class is the interface for all target blocks. Target blocks consume messages offered to them by ISource blocks. |
|
A join messaging block is a single-target, multi-source, ordered propagator_block which combines together messages of type _Type from each of its sources. |
|
An abstraction of a physical location on hardware. |
|
The basic message envelope containing the data payload being passed between messaging blocks. |
|
This class describes an exception thrown when a messaging block is unable to find a requested message. |
|
The message_processor class is the abstract base class for processing of message objects. There is no guarantee on the ordering of the messages. |
|
This class describes an exception thrown when there are tasks still scheduled to a task_group or structured_task_group object at the time that object's destructor executes. This exception will never be thrown if the destructor is reached because of a stack unwinding as the result of an exception. |
|
The multi_link_registry object is a network_link_registry that manages multiple source blocks or multiple target blocks. |
|
A multitype_join messaging block is a multi-source, single-target messaging block that combines together messages of different types from each of its sources and offers a tuple of the combined messages to its targets. |
|
This class describes an exception thrown when the Concurrency Runtime detects that you neglected to call the CurrentScheduler::Detach method on a context that attached to a second scheduler using the Attach method of the Scheduler object. |
|
The network_link_registry abstract base class manages the links between source and target blocks. |
|
This class describes an exception thrown when an operation has timed out. |
|
An ordered_message_processor is a message_processor that allows message blocks to process messages in the order they were received. |
|
An overwrite_buffer messaging block is a multi-target, multi-source, ordered propagator_block capable of storing a single message at a time. New messages overwrite previously held ones. |
|
The progress reporter class allows reporting progress notifications of a specific type. Each progress_reporter object is bound to a particular asynchronous action or operation. |
|
The propagator_block class is an abstract base class for message blocks that are both a source and target. It combines the functionality of both the source_block and target_block classes. |
|
A writer-preference queue-based reader-writer lock with local only spinning. The lock grants first in - first out (FIFO) access to writers and starves readers under a continuous load of writers. |
|
Represents an abstraction for a schedule group. Schedule groups organize a set of related work that benefits from being scheduled close together either temporally, by executing another task in the same group before moving to another group, or spatially, by executing multiple items within the same group on the same NUMA node or physical socket. |
|
Represents an abstraction for a Concurrency Runtime scheduler. |
|
This class describes an exception thrown when an operation is performed which requires a scheduler to be attached to the current context and one is not. |
|
This class describes an exception thrown because of a failure to acquire a critical resource in the Concurrency Runtime. |
|
This class describes an exception thrown because of a failure to create a worker execution context in the Concurrency Runtime. |
|
The SchedulerPolicy class contains a set of key/value pairs, one for each policy element, that control the behavior of a scheduler instance. |
|
The simple_partitioner class represents a static partitioning of the range iterated over by parallel_for. The partitioner divides the range into chunks such that each chunk has at least the number of iterations specified by the chunk size. |
|
A single_assignment messaging block is a multi-target, multi-source, ordered propagator_block capable of storing a single, write-once message. |
|
The single_link_registry object is a network_link_registry that manages only a single source or target block. |
|
The source_block class is an abstract base class for source-only blocks. The class provides basic link management functionality as well as common error checks. |
|
The source_link_manager object manages messaging block network links to ISource blocks. |
|
The static_partitioner class represents a static partitioning of the range iterated over by parallel_for. The partitioner divides the range into as many chunks as there are workers available to the underyling scheduler. |
|
The structured_task_group class represents a highly structured collection of parallel work. You can queue individual parallel tasks to a structured_task_group using task_handle objects, and wait for them to complete, or cancel the task group before they have finished executing, which will abort any tasks that have not begun execution. |
|
The target_block class is an abstract base class that provides basic link management functionality and error checking for target only blocks. |
|
The Parallel Patterns Library (PPL) task class. A task object represents work that can be executed asynchronously, and concurrently with other tasks and parallel work produced by parallel algorithms in the Concurrency Runtime. It produces a result of type _ResultType on successful completion. Tasks of type task<void> produce no result. A task can be waited upon and canceled independently of other tasks. It can also be composed with other tasks using continuations(then), and join(when_all) and choice(when_any) patterns. |
|
This class describes an exception thrown by the PPL tasks layer in order to force the current task to cancel. It is also thrown by the get() method on task, for a canceled task. |
|
The task_completion_event class allows you to delay the execution of a task until a condition is satisfied, or start a task in response to an external event. |
|
The task_continuation_context class allows you to specify where you would like a continuation to be executed. It is only useful to use this class from a Windows Store app. For non-Windows Store apps, the task continuation's execution context is determined by the runtime, and not configurable. |
|
The task_group class represents a collection of parallel work which can be waited on or canceled. |
|
The task_handle class represents an individual parallel work item. It encapsulates the instructions and the data required to execute a piece of work. |
|
Represents the allowed options for creating a task |
|
A timer messaging block is a single-target source_block capable of sending a message to its target after a specified time period has elapsed or at specific intervals. |
|
A transformer messaging block is a single-target, multi-source, ordered propagator_block which can accept messages of one type and is capable of storing an unbounded number of messages of a different type. |
|
An unbounded_buffer messaging block is a multi-target, multi-source, ordered propagator_block capable of storing an unbounded number of messages. |
|
This class describes an exception thrown when an unsupported operating system is used. |
Structures
Name |
Description |
---|---|
The DispatchState structure is used to transfer state to the IExecutionContext::Dispatch method. It describes the circumstances under which the Dispatch method is invoked on an IExecutionContext interface. |
|
An interface to an execution context which can run on a given virtual processor and be cooperatively context switched. |
|
An abstraction for a hardware thread. |
|
An interface to the Concurrency Runtime's Resource Manager. This is the interface by which schedulers communicate with the Resource Manager. |
|
An interface to an abstraction of a work scheduler. The Concurrency Runtime's Resource Manager uses this interface to communicate with work schedulers. |
|
The interface by which schedulers communicate with the Concurrency Runtime's Resource Manager to negotiate resource allocation. |
|
An abstraction for a thread of execution. Depending on the SchedulerType policy key of the scheduler you create, the Resource Manager will grant you a thread proxy that is backed by either a regular Win32 thread or a user-mode schedulable (UMS) thread. UMS threads are supported on 64-bit operating systems with version Windows 7 and higher. |
|
An interface to an execution resource as defined by the Resource Manager. |
|
An interface to a topology node as defined by the Resource Manager. A node contains one or more execution resources. |
|
Represents a UMS completion list. When a UMS thread blocks, the scheduler's designated scheduling context is dispatched in order to make a decision of what to schedule on the underlying virtual processor root while the original thread is blocked. When the original thread unblocks, the operating system queues it to the completion list which is accessible through this interface. The scheduler can query the completion list on the designated scheduling context or any other place it searches for work. |
|
An interface to an abstraction of a work scheduler that wants the Concurrency Runtime's Resource Manager to hand it user-mode schedulable (UMS) threads. The Resource Manager uses this interface to communicate with UMS thread schedulers. The IUMSScheduler interface inherits from the IScheduler interface. |
|
An abstraction for a thread of execution. If you want your scheduler to be granted user-mode schedulable (UMS) threads, set the value for the scheduler policy element SchedulerKind to UmsThreadDefault, and implement the IUMSScheduler interface. UMS threads are only supported on 64-bit operating systems with version Windows 7 and higher. |
|
Represents a notification from the Resource Manager that a thread proxy which blocked and triggered a return to the scheduler's designated scheduling context has unblocked and is ready to be scheduled. This interface is invalid once the thread proxy's associated execution context, returned from the GetContext method, is rescheduled. |
|
An abstraction for a hardware thread on which a thread proxy can execute. |
|
Scheduler Interface |
|
Represents a pointer to a scheduler. This class exists to allow the the specification of a shared lifetime by using shared_ptr or just a plain reference by using raw pointer. |
Enumerations
Name |
Description |
---|---|
The valid states for an agent. |
|
The types of events that can be traced using the tracing functionality offered by the Agents Library |
|
The types of events that can be traced using the tracing functionality offered by the Concurrency Runtime. |
|
Trace flags for the event types |
|
The type of critical region a context is inside. |
|
Used by the DynamicProgressFeedback policy to describe whether resources for the scheduler will be rebalanced according to statistical information gathered from the scheduler or only based on virtual processors going in and out of the idle state through calls to the Activate and Deactivate methods on the IVirtualProcessorRoot interface. For more information on available scheduler policies, see PolicyElementKey Enumeration. |
|
The type of a join messaging block. |
|
The valid responses for an offer of a message object to a block. |
|
Policy keys describing aspects of scheduler behavior. Each policy element is described by a key-value pair. For more information about scheduler policies and their impact on schedulers, see Task Scheduler (Concurrency Runtime). |
|
Used by the SchedulerKind policy to describe the type of threads that the scheduler should utilize for underlying execution contexts. For more information on available scheduler policies, see PolicyElementKey Enumeration. |
|
Used by the SchedulingProtocol policy to describe which scheduling algorithm will be utilized for the scheduler. For more information on available scheduler policies, see PolicyElementKey Enumeration. |
|
Used to denote the state a thread proxy is in, when it is executing a cooperative context switch to a different thread proxy. |
|
Describes the execution status of a task_group or structured_task_group object. A value of this type is returned by numerous methods that wait on tasks scheduled to a task group to complete. |
|
Used by the WinRTInitialization policy to describe whether and how the Windows Runtime will be initialized on scheduler threads for an application which runs on operating systems with version Windows 8 or higher. For more information on available scheduler policies, see PolicyElementKey Enumeration. |
Functions
Name |
Description |
---|---|
Allocates a block of memory of the size specified from the Concurrency Runtime Caching Suballocator. |
|
Overloaded. An asynchronous send operation, which schedules a task to propagate the data to the target block. |
|
Cancels the currently executing task. This function can be called from within the body of a task to abort the task's execution and cause it to enter the canceled state. While it may be used in response to the is_task_cancellation_requested function, you may also use it by itself, to initiate cancellation of the task that is currently executing. It is not a supported scenario to call this function if you are not within the body of a task. Doing so will result in undefined behavior such as a crash or a hang in your application. |
|
Creates a Windows Runtime asynchronous construct based on a user supplied lambda or function object. The return type of create_async is one of either IAsyncAction^, IAsyncActionWithProgress<TProgress>^, IAsyncOperation<TResult>^, or IAsyncOperationWithProgress<TResult, TProgress>^ based on the signature of the lambda passed to the method. |
|
Overloaded. Creates a PPL task object. create_task can be used anywhere you would have used a task constructor. It is provided mainly for convenience, because it allows use of the auto keyword while creating tasks. |
|
Returns an interface that represents the singleton instance of the Concurrency Runtime's Resource Manager. The Resource Manager is responsible for assigning resources to schedulers that want to cooperate with each other. |
|
Disables tracing in the Concurrency Runtime. This function is deprecated because ETW tracing is unregistered by default. |
|
Enables tracing in the Concurrency Runtime. This function is deprecated because ETW tracing is now on by default. |
|
Releases a block of memory previously allocated by the Alloc method to the Concurrency Runtime Caching Suballocator. |
|
Returns a unique identifier that can be assigned to an execution context that implements the IExecutionContext interface. |
|
Returns the operating system version. |
|
Returns the number of hardware threads on the underlying system. |
|
Returns the number of NUMA nodes or processor packages on the underlying system. |
|
Returns a unique identifier that can be assigned to a scheduler that implements the IScheduler interface. |
|
Creates an interruption point for cancellation. If a cancellation is in progress in the context where this function is called, this will throw an internal exception that aborts the execution of the currently executing parallel work. If cancellation is not in progress, the function does nothing. |
|
Returns an indication of whether the task group which is currently executing inline on the current context is in the midst of an active cancellation (or will be shortly). Note that if there is no task group currently executing inline on the current context, false will be returned. |
|
Returns an indication of whether the task that is currently executing has received a request to cancel its execution. Cancellation is requested on a task if the task was created with a cancellation token, and the token source associated with that token is canceled. |
|
Overloaded. Constructs a choice messaging block from an optional Scheduler or ScheduleGroup and two or more input sources. |
|
Overloaded. Constructs a greedy multitype_join messaging block from an optional Scheduler or ScheduleGroup and two or more input sources. |
|
Overloaded. Constructs a non_greedy multitype_join messaging block from an optional Scheduler or ScheduleGroup and two or more input sources. |
|
A factory method for creating a task_handle object. |
|
Overloaded. Arranges the elements in a specified range into a nondescending order, or according to an ordering criterion specified by a binary predicate, in parallel. This function is semantically similar to std::sort in that it is a compare-based, unstable, in-place sort except that it needs O(n) additional space, and requires default initialization for the elements being sorted. |
|
Overloaded. parallel_for iterates over a range of indices and executes a user-supplied function at each iteration, in parallel. |
|
Overloaded. parallel_for_each applies a specified function to each element within a range, in parallel. It is semantically equivalent to the for_each function in the std namespace, except that iteration over the elements is performed in parallel, and the order of iteration is unspecified. The argument _Func must support a function call operator of the form operator()(T) where the parameter T is the item type of the container being iterated over. |
|
Overloaded. Executes the function objects supplied as parameters in parallel, and blocks until they have finished executing. Each function object could be a lambda expression, a pointer to function, or any object that supports the function call operator with the signature void operator()(). |
|
Overloaded. Arranges elements in a specified range into an non descending order using a radix sorting algorithm. This is a stable sort function which requires a projection function that can project elements to be sorted into unsigned integer-like keys. Default initialization is required for the elements being sorted. |
|
Overloaded. Computes the sum of all elements in a specified range by computing successive partial sums, or computes the result of successive partial results similarly obtained from using a specified binary operation other than sum, in parallel. parallel_reduce is semantically similar to std::accumulate, except that it requires the binary operation to be associative, and requires an identity value instead of an initial value. |
|
Overloaded. Arranges the elements in a specified range into a nondescending order, or according to an ordering criterion specified by a binary predicate, in parallel. This function is semantically similar to std::sort in that it is a compare-based, unstable, in-place sort. |
|
Overloaded. Applies a specified function object to each element in a source range, or to a pair of elements from two source ranges, and copies the return values of the function object into a destination range, in parallel. This functional is semantically equivalent to std::transform. |
|
Overloaded. A general receive implementation, allowing a context to wait for data from exactly one source and filter the values that are accepted. |
|
Executes a function object immediately and synchronously in the context of a given cancellation token. |
|
Overloaded. A synchronous send operation, which waits until the target either accepts or declines the message. |
|
Overloaded. Restricts the execution resources used by the Concurrency Runtime internal worker threads to the affinity set specified. It is valid to call this method only before the Resource Manager has been created, or between two Resource Manager lifetimes. It can be invoked multiple times as long as the Resource Manager does not exist at the time of invocation. After an affinity limit has been set, it remains in effect until the next valid call to the set_task_execution_resources method. The affinity mask provided need not be a subset of the process affinity mask. The process affinity will be updated if necessary. |
|
Exchanges the elements of two concurrent_vector objects. |
|
Associates the given name to the message block or agent in the ETW trace. |
|
Overloaded. A general try-receive implementation, allowing a context to look for data from exactly one source and filter the values that are accepted. If the data is not ready, the method will return false. |
|
Pauses the current context for a specified amount of time. |
|
Creates a task that will complete successfully when all of the tasks supplied as arguments complete successfully. |
|
Overloaded. Creates a task that will complete successfully when any of the tasks supplied as arguments completes successfully. |
Operators
Name |
Description |
---|---|
Tests if the concurrent_vector object on the left side of the operator is not equal to the concurrent_vector object on the right side. |
|
Overloaded. Creates a task that will complete succesfully when both of the tasks supplied as arguments complete successfully. |
|
Overloaded. Creates a task that will complete successfully when either of the tasks supplied as arguments completes successfully. |
|
Tests if the concurrent_vector object on the left side of the operator is less than the concurrent_vector object on the right side. |
|
Tests if the concurrent_vector object on the left side of the operator is less than or equal to the concurrent_vector object on the right side. |
|
Tests if the concurrent_vector object on the left side of the operator is equal to the concurrent_vector object on the right side. |
|
Tests if the concurrent_vector object on the left side of the operator is greater than the concurrent_vector object on the right side. |
|
Tests if the concurrent_vector object on the left side of the operator is greater than or equal to the concurrent_vector object on the right side. |
Constants
Name |
Description |
---|---|
A category GUID ({B9B5B78C-0713-4898-A21A-C67949DCED07}) describing ETW events fired by the Agents library in the Concurrency Runtime. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to chores or tasks. |
|
The ETW provider GUID for the Concurrency Runtime. |
|
Indicates support of the Resource Manager interface defined in Visual Studio 2010. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are not more specifically described by another category. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to contexts. |
|
Value indicating that a wait should never time out. |
|
Value indicating that a wait timed out. |
|
Special value for the policy key ContextPriority indicating that the thread priority of all contexts in the scheduler should be the same as that of the thread which created the scheduler. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to locks. |
|
Special value for the policy keys MinConcurrency and MaxConcurrency. Defaults to the number of hardware threads on the machine in the absence of other constraints. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to usage of the parallel_for_each function. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to usage of the parallel_for function. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to usage of the parallel_invoke function. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to the resource manager. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to schedule groups. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to scheduler activity. |
|
A category GUID describing ETW events fired by the Concurrency Runtime that are directly related to virtual processors. |
Requirements
Header: agents.h, concrt.h, concrtrm.h, concurrent_priority_queue.h, concurrent_queue.h, concurrent_unordered_map.h, concurrent_unordered_set.h, concurrent_vector.h, internal_concurrent_hash.h, internal_split_ordered_list.h, ppl.h, pplcancellation_token.h, pplconcrt.h, pplinterface.h, ppltasks.h