Home > Archives > JVM Native Method Stacks(本地方法栈)

JVM Native Method Stacks(本地方法栈)

Publish:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class Test {
        public static void main(String[] args) {
                MyThread mt =  new MyThread();
                Thread t = new Thread(mt, "baoguo");
                t.start();
        }
}

class MyThread implements Runnable {
        @Override
        public void run() {
                String name = Thread.currentThread().getName();
                System.out.println("Thread name:" + name);
        }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
    public synchronized void start() {
        /**
         * This method is not invoked for the main method thread or "system"
         * group threads created/set up by the VM. Any new functionality added
         * to this method in the future may have to also be added to the VM.
         *
         * A zero status value corresponds to state "NEW".
         */
        if (threadStatus != 0)
            throw new IllegalThreadStateException();

        /* Notify the group that this thread is about to be started
         * so that it can be added to the group's list of threads
         * and the group's unstarted count can be decremented. */
        group.add(this);

        boolean started = false;
        try {
            start0();
            started = true;
        } finally {
            try {
                if (!started) {
                    group.threadStartFailed(this);
                }
            } catch (Throwable ignore) {
                /* do nothing. If start0 threw a Throwable then
                  it will be passed up the call stack */
            }
        }
    }

    private native void start0();

声明: 本文采用 BY-NC-SA 授权。转载请注明转自: Ding Bao Guo