8073545: Use shorter and more descriptive names for GC worker threads

Reviewed-by: ehelin, jwilhelm
This commit is contained in:
David Lindholm 2015-03-05 16:43:26 +01:00
parent 0401cdb946
commit 8fe1e48f0c
9 changed files with 12 additions and 12 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2001, 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@ -48,7 +48,7 @@ ConcurrentMarkThread::ConcurrentMarkThread(ConcurrentMark* cm) :
_vtime_accum(0.0),
_vtime_mark_accum(0.0) {
set_name("G1 Main Concurrent Mark GC Thread");
set_name("G1 Main Marker");
create_and_start();
}