# HG changeset patch # User bpb # Date 1487028282 28800 # Node ID 8bf18a26294ec8cfaff3a231a01f61a3664ee696 # Parent 0d63e215d98b2ebd65ea651de38f022870a18d11 8172465: Better handling of channel groups Reviewed-by: alanb, coffeys, skoivu, rhalade, chegar diff -r 0d63e215d98b -r 8bf18a26294e src/java.base/share/classes/sun/nio/ch/AsynchronousChannelGroupImpl.java --- a/src/java.base/share/classes/sun/nio/ch/AsynchronousChannelGroupImpl.java Mon Feb 13 16:32:23 2017 +0000 +++ b/src/java.base/share/classes/sun/nio/ch/AsynchronousChannelGroupImpl.java Mon Feb 13 15:24:42 2017 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2017, 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 @@ -246,13 +246,16 @@ abstract void shutdownHandlerTasks(); private void shutdownExecutors() { - AccessController.doPrivileged(new PrivilegedAction<>() { - public Void run() { - pool.executor().shutdown(); - timeoutExecutor.shutdown(); - return null; - } - }); + AccessController.doPrivileged( + new PrivilegedAction<>() { + public Void run() { + pool.executor().shutdown(); + timeoutExecutor.shutdown(); + return null; + } + }, + null, + new RuntimePermission("modifyThread")); } @Override