Package org.jruby.truffle.runtime.control

Examples of org.jruby.truffle.runtime.control.ThreadExitException


            super(prev);
        }

        @Specialization
        public RubyNilClass exit() {
            throw new ThreadExitException();
        }
View Full Code Here


            super(prev);
        }

        @Specialization
        public RubyNilClass exit() {
            throw new ThreadExitException();
        }
View Full Code Here

            getContext().getSafepointManager().pauseAllThreadsAndExecute(new Consumer<Boolean>() {

                @Override
                public void accept(Boolean isPausingThread) {
                    if (getContext().getThreadManager().getCurrentThread() == thread) {
                        throw new ThreadExitException();
                    }
                }

            });
View Full Code Here

TOP

Related Classes of org.jruby.truffle.runtime.control.ThreadExitException

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.