Scroll to navigation

__gnu_parallel::Job(3) Library Functions Manual __gnu_parallel::Job(3)

NAME

__gnu_parallel::Job -

One job for a certain thread.

SYNOPSIS

Public Types


typedef _DifferenceTp difference_type

Public Attributes


volatile difference_type first
volatile difference_type last
volatile difference_type load

Detailed Description

template<typename _DifferenceTp> struct __gnu_parallel::Job< _DifferenceTp >

One job for a certain thread.

Definition at line 54 of file workstealing.h.

Member Data Documentation

template<typename _DifferenceTp> volatile difference_type __gnu_parallel::Job< _DifferenceTp >::first

First element. Changed by owning and stealing thread. By stealing thread, always incremented.

Definition at line 62 of file workstealing.h.

Referenced by __gnu_parallel::for_each_template_random_access_workstealing().

template<typename _DifferenceTp> volatile difference_type __gnu_parallel::Job< _DifferenceTp >::last

Last element. Changed by owning thread only.

Definition at line 67 of file workstealing.h.

Referenced by __gnu_parallel::for_each_template_random_access_workstealing().

template<typename _DifferenceTp> volatile difference_type __gnu_parallel::Job< _DifferenceTp >::load

Number of elements, i. e. last-first+1. Changed by owning thread only.

Definition at line 72 of file workstealing.h.

Referenced by __gnu_parallel::for_each_template_random_access_workstealing().

Author

Generated automatically by Doxygen for libstdc++ from the source code.

19 Jun 2018 libstdc++