src/hotspot/share/prims/jvmtiRawMonitor.cpp
changeset 49360 886acec3b4c6
parent 48488 51825789dd89
child 49449 ef5d5d343e2a
equal deleted inserted replaced
49359:59f6547e151f 49360:886acec3b4c6
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    21  * questions.
    21  * questions.
    22  *
    22  *
    23  */
    23  */
    24 
    24 
    25 #include "precompiled.hpp"
    25 #include "precompiled.hpp"
       
    26 #include "memory/allocation.inline.hpp"
    26 #include "prims/jvmtiRawMonitor.hpp"
    27 #include "prims/jvmtiRawMonitor.hpp"
    27 #include "runtime/atomic.hpp"
    28 #include "runtime/atomic.hpp"
    28 #include "runtime/interfaceSupport.hpp"
    29 #include "runtime/interfaceSupport.hpp"
    29 #include "runtime/orderAccess.inline.hpp"
    30 #include "runtime/orderAccess.inline.hpp"
    30 #include "runtime/thread.inline.hpp"
    31 #include "runtime/thread.inline.hpp"
   419     return OM_ILLEGAL_MONITOR_STATE;
   420     return OM_ILLEGAL_MONITOR_STATE;
   420   }
   421   }
   421   SimpleNotify (THREAD, true) ;
   422   SimpleNotify (THREAD, true) ;
   422   return OM_OK;
   423   return OM_OK;
   423 }
   424 }
   424