< prev index next >

src/hotspot/share/gc/z/zFuture.hpp

Print this page




  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 #ifndef SHARE_GC_Z_ZFUTURE_HPP
  25 #define SHARE_GC_Z_ZFUTURE_HPP
  26 
  27 #include "memory/allocation.hpp"
  28 #include "runtime/semaphore.hpp"
  29 
  30 template <typename T>
  31 class ZFuture VALUE_OBJ_CLASS_SPEC {
  32 private:
  33   SemaphoreSafepointAware _sema;
  34   T                       _value;
  35 
  36 public:
  37   void set(T value);
  38   T get();
  39 };
  40 
  41 #endif // SHARE_GC_Z_ZFUTURE_HPP


  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 #ifndef SHARE_GC_Z_ZFUTURE_HPP
  25 #define SHARE_GC_Z_ZFUTURE_HPP
  26 
  27 #include "memory/allocation.hpp"
  28 #include "runtime/semaphore.hpp"
  29 
  30 template <typename T>
  31 class ZFuture {
  32 private:
  33   SemaphoreSafepointAware _sema;
  34   T                       _value;
  35 
  36 public:
  37   void set(T value);
  38   T get();
  39 };
  40 
  41 #endif // SHARE_GC_Z_ZFUTURE_HPP
< prev index next >