Package org.jruby.runtime.profile

Examples of org.jruby.runtime.profile.IProfileData


                    }
                }

                // dump profile, if any
                if (runtime.getInstanceConfig().isProfilingEntireRun()) {
                    IProfileData profileData = (IProfileData) context.getProfileData();
                    runtime.getInstanceConfig().makeDefaultProfilePrinter(profileData).printProfile(System.err);
                }
            }
        } catch (ThreadKill tk) {
            // be dead
View Full Code Here


            getJRubyClassLoader().tearDown(isDebug());
        }

        if (config.isProfilingEntireRun()) {
            System.err.println("\nmain thread profile results:");
            IProfileData profileData = (IProfileData) threadService.getMainThread().getContext().getProfileData();
            config.makeDefaultProfilePrinter(profileData).printProfile(System.err);
        }

        if (systemExit && status != 0) {
            throw newSystemExit(status);
View Full Code Here

TOP

Related Classes of org.jruby.runtime.profile.IProfileData

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.