src/hotspot/share/runtime/semaphore.hpp
author ccheung
Tue, 10 Oct 2017 14:38:56 -0700
changeset 47614 0ecfd6c951a6
parent 47216 71c04702a3d5
child 50192 8bc79d2d1568
permissions -rw-r--r--
8185694: Replace SystemDictionaryShared::_java_platform_loader with SystemDictionary::is_platform_class_loader() Summary: added the creation of _java_platform_loader Reviewed-by: iklam, coleenp, mchung, dholmes, jiangli
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
31610
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     1
/*
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 31610
diff changeset
     2
 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
31610
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     4
 *
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     8
 *
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    13
 * accompanied this code).
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    14
 *
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    18
 *
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    21
 * questions.
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    22
 *
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    23
 */
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    24
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    25
#ifndef SHARE_VM_RUNTIME_SEMAPHORE_HPP
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    26
#define SHARE_VM_RUNTIME_SEMAPHORE_HPP
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    27
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    28
#include "memory/allocation.hpp"
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    29
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 31610
diff changeset
    30
#if defined(LINUX) || defined(SOLARIS) || defined(AIX)
31610
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    31
# include "semaphore_posix.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 31610
diff changeset
    32
#elif defined(BSD)
31610
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    33
# include "semaphore_bsd.hpp"
40010
e32d5e545789 8161258: Simplify including platform files.
goetz
parents: 31610
diff changeset
    34
#elif defined(_WINDOWS)
31610
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    35
# include "semaphore_windows.hpp"
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    36
#else
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    37
# error "No semaphore implementation provided for this OS"
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    38
#endif
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    39
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    40
// Implements the limited, platform independent Semaphore API.
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    41
class Semaphore : public CHeapObj<mtInternal> {
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    42
  SemaphoreImpl _impl;
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    43
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    44
  // Prevent copying and assignment of Semaphore instances.
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    45
  Semaphore(const Semaphore&);
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    46
  Semaphore& operator=(const Semaphore&);
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    47
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    48
 public:
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    49
  Semaphore(uint value = 0) : _impl(value) {}
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    50
  ~Semaphore() {}
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    51
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    52
  void signal(uint count = 1) { _impl.signal(count); }
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    53
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    54
  void wait()                 { _impl.wait(); }
46610
d3e75e23b534 8183229: Implement WindowsSemaphore::trywait
mgerdin
parents: 40010
diff changeset
    55
d3e75e23b534 8183229: Implement WindowsSemaphore::trywait
mgerdin
parents: 40010
diff changeset
    56
  bool trywait()              { return _impl.trywait(); }
31610
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    57
};
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    58
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    59
b05ea6f92971 8087322: Implement a Semaphore utility class
stefank
parents:
diff changeset
    60
#endif // SHARE_VM_RUNTIME_SEMAPHORE_HPP