Author: peter_firmstone Date: Tue Jan 12 09:08:51 2016 New Revision: 1724178
URL: http://svn.apache.org/viewvc?rev=1724178&view=rev Log: Remove thread stack size hint from ThreadPool, consider making this tunable. Set version string to 3.0.0 Modified: river/jtsk/trunk/common.xml river/jtsk/trunk/src-doc/static/specs/html/standard.css river/jtsk/trunk/src/org/apache/river/thread/ThreadPool.java Modified: river/jtsk/trunk/common.xml URL: http://svn.apache.org/viewvc/river/jtsk/trunk/common.xml?rev=1724178&r1=1724177&r2=1724178&view=diff ============================================================================== --- river/jtsk/trunk/common.xml (original) +++ river/jtsk/trunk/common.xml Tue Jan 12 09:08:51 2016 @@ -25,7 +25,7 @@ <property file="${root}/build.properties" /> <!-- Product version info --> - <property name="version" value="trunk"/> + <property name="version" value="3.0.0"/> <property name="product.name" value="apache-river-${version}"/> <property name="product.title" value="Apache River v${version}"/> Modified: river/jtsk/trunk/src-doc/static/specs/html/standard.css URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src-doc/static/specs/html/standard.css?rev=1724178&r1=1724177&r2=1724178&view=diff ============================================================================== --- river/jtsk/trunk/src-doc/static/specs/html/standard.css (original) +++ river/jtsk/trunk/src-doc/static/specs/html/standard.css Tue Jan 12 09:08:51 2016 @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /* Document Defaults */ body { font-size: 10pt; font-style: normal; font-weight: normal; color: #000000; background-color: #FFFFFF; letter-spacing: normal; text-align: left; text-indent: 15pt; word-spacing: normal} a:active { color: #0000CC} @@ -10,7 +28,8 @@ a:visited { color: #9999CC} .BodyRelative { } .CellBody { } .CellHeading { text-align: center; font-weight: bold; color: #003366} -.ChapNumber color:{ #ffffff} +.ChapNumber color:{ #ffffff} + .GroupTitlesIX { font-size: 16pt; color: #003366} .Heading1 { text-align: center; font-size: 20pt; color: #003366 ; font-weight: bold; margin-top: 20px} .Heading1A { font-size: 20pt; font-weight: bold; color: #003366 ; margin-top: 20px} Modified: river/jtsk/trunk/src/org/apache/river/thread/ThreadPool.java URL: http://svn.apache.org/viewvc/river/jtsk/trunk/src/org/apache/river/thread/ThreadPool.java?rev=1724178&r1=1724177&r2=1724178&view=diff ============================================================================== --- river/jtsk/trunk/src/org/apache/river/thread/ThreadPool.java (original) +++ river/jtsk/trunk/src/org/apache/river/thread/ThreadPool.java Tue Jan 12 09:08:51 2016 @@ -210,7 +210,7 @@ final class ThreadPool implements Execut public Thread newThread(Runnable r) { return AccessController.doPrivileged( - new NewThreadAction(threadGroup, r, NewThreadAction.NAME_PREFIX, false, 228)); + new NewThreadAction(threadGroup, r, NewThreadAction.NAME_PREFIX, false)); } }
