mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
8016302: Change type of the number of GC workers to unsigned int (2)
Reviewed-by: tschatzl, jwilhelm
This commit is contained in:
parent
a00bf70f6f
commit
0ab60ab172
21 changed files with 96 additions and 98 deletions
|
@ -1394,8 +1394,8 @@ void WatcherThread::print_on(outputStream* st) const {
|
|||
void JavaThread::initialize() {
|
||||
// Initialize fields
|
||||
|
||||
// Set the claimed par_id to -1 (ie not claiming any par_ids)
|
||||
set_claimed_par_id(-1);
|
||||
// Set the claimed par_id to UINT_MAX (ie not claiming any par_ids)
|
||||
set_claimed_par_id(UINT_MAX);
|
||||
|
||||
set_saved_exception_pc(NULL);
|
||||
set_threadObj(NULL);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue