Skip to content

Commit

Permalink
8257077: ZGC: Remove ZWorkers::run_serial()
Browse files Browse the repository at this point in the history
Reviewed-by: stefank
  • Loading branch information
pliden committed Nov 25, 2020
1 parent f3fc0e0 commit 434b98f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/hotspot/share/gc/z/zWorkers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,6 @@ void ZWorkers::run(ZTask* task, uint nworkers) {
_workers.run_task(task->gang_task());
}

void ZWorkers::run_serial(ZTask* task) {
run(task, 1 /* nworkers */);
}

void ZWorkers::run_parallel(ZTask* task) {
run(task, nparallel());
}
Expand Down
1 change: 0 additions & 1 deletion src/hotspot/share/gc/z/zWorkers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ class ZWorkers {

void set_boost(bool boost);

void run_serial(ZTask* task);
void run_parallel(ZTask* task);
void run_concurrent(ZTask* task);

Expand Down

0 comments on commit 434b98f

Please sign in to comment.