Package org.jruby.truffle.runtime.core

Examples of org.jruby.truffle.runtime.core.RubyThread


            lock.unlock();
        }
    }

    private void waitOnBarrier() {
        final RubyThread runningThread = context.getThreadManager().leaveGlobalLock();

        try {
            while (true) {
                try {
                    barrier.await();
View Full Code Here


            super(prev);
        }

        @Specialization
        public RubyNilClass pass() {
            final RubyThread runningThread = getContext().getThreadManager().leaveGlobalLock();

            try {
                Thread.yield();
            } finally {
                getContext().getThreadManager().enterGlobalLock(runningThread);
View Full Code Here

TOP

Related Classes of org.jruby.truffle.runtime.core.RubyThread

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.