Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2018-09-11 13:46:00 +0000
committerMickael Istria2018-09-11 18:19:46 +0000
commitc1b196110f9c4a3a10335da838571117934b5260 (patch)
tree45d4018881370003d3ae15a79c6f7115a8b02e75
parent05b5a61fa4cc16a992f9807c445bc71d4c2d55a0 (diff)
downloadnews-c1b196110f9c4a3a10335da838571117934b5260.tar.gz
news-c1b196110f9c4a3a10335da838571117934b5260.tar.xz
news-c1b196110f9c4a3a10335da838571117934b5260.zip
Bug 531554 - Pref to allow null scheduling rule for Java Builder
Change-Id: Ie4ecb0bf92323f58e165a2d88fc43b9e5c4ef13c Signed-off-by: Mickael Istria <mistria@redhat.com>
-rwxr-xr-x4.10/jdt.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/4.10/jdt.html b/4.10/jdt.html
index 162b0001..55c358cb 100755
--- a/4.10/jdt.html
+++ b/4.10/jdt.html
@@ -104,6 +104,18 @@ ul {padding-left: 13px;}
</td>
</tr>
+ <tr id="disable-thread-name-changes">
+ <td class="title">Make JDT builder use null as scheduling rule</td>
+ <td class="content">
+ By configuring the <b>org.eclipse.jdt.core/useNullSchedulingRule</b> preference to true, the JDT builder will use <tt>null</tt>
+ as scheduling rule instead of the workspace root. The preference can be change using typical Prefrences APIs, or by editing this
+ the <tt>plugin_customization.ini</tt> file of your application.
+ <p> This prevents the Java builder from locking the whole workspace. The user can continue to work in parallel and other builders
+ can also run in parallel, which results in faster builds and faster UI feedback.</p>
+ <p>As of 4.10, this is considered as a an experimental feature and is introduced mainly for testing purpose.</p>
+ </td>
+ </tr>
+
</tbody>
</table>
<script type="text/javascript" src="scripts.js"></script>

Back to the top