comparison src/share/vm/runtime/thread.hpp @ 11146:e619a2766bcc

8016131: nsk/sysdict/vm/stress/chain tests crash the VM in 'entry_frame_is_first()' Reviewed-by: jrose, kvn, mgronlun
author rbackman
date Wed, 12 Jun 2013 11:17:39 +0200
parents dbc0b5dc08f5
children 5e3b6f79d280
comparison
equal deleted inserted replaced
11145:39deebbc90b3 11146:e619a2766bcc
519 virtual bool is_lock_owned(address adr) const; 519 virtual bool is_lock_owned(address adr) const;
520 520
521 // Check if address is in the stack of the thread (not just for locks). 521 // Check if address is in the stack of the thread (not just for locks).
522 // Warning: the method can only be used on the running thread 522 // Warning: the method can only be used on the running thread
523 bool is_in_stack(address adr) const; 523 bool is_in_stack(address adr) const;
524 // Check if address is in the usable part of the stack (excludes protected
525 // guard pages)
526 bool is_in_usable_stack(address adr) const;
524 527
525 // Sets this thread as starting thread. Returns failure if thread 528 // Sets this thread as starting thread. Returns failure if thread
526 // creation fails due to lack of memory, too many threads etc. 529 // creation fails due to lack of memory, too many threads etc.
527 bool set_as_starting_thread(); 530 bool set_as_starting_thread();
528 531