From Documentation
Line 1: | Line 1: | ||
=Introduction= | =Introduction= | ||
− | This article is a summary of Oracle's java concurrency pages [http://docs.oracle.com/javase/tutorial/essential/concurrency/]. Java was designed from the bottom up to support threaded programming, and shares a number of concepts with the C language threaded paradigm PThreads. This article assumes a familiarity with the concept of threads, as well as a functional understanding of the Java programming language. Before continueing please review the specifics of working with | + | This article is a summary of Oracle's java concurrency pages [http://docs.oracle.com/javase/tutorial/essential/concurrency/]. Java was designed from the bottom up to support threaded programming, and shares a number of concepts with the C language threaded paradigm PThreads. This article assumes a familiarity with the concept of threads, as well as a functional understanding of the Java programming language. Before continueing please review the specifics of working with [[OPENJDK]] on Sharcnet. |
=Thread Creation and Execution= | =Thread Creation and Execution= |
Revision as of 13:42, 11 August 2014
Introduction
This article is a summary of Oracle's java concurrency pages [1]. Java was designed from the bottom up to support threaded programming, and shares a number of concepts with the C language threaded paradigm PThreads. This article assumes a familiarity with the concept of threads, as well as a functional understanding of the Java programming language. Before continueing please review the specifics of working with OPENJDK on Sharcnet.