Content deleted Content added
Updated link to x10 web page, now moved to sourceforge |
Added more description as to how the X10 language works with regards to the parent - child hierarchy. Source cited. |
||
Line 2:
X10 is designed specifically for [[parallel programming]]. It will be an "extended [[subset]]" of the [[Java (programming language)|Java]] programming language, strongly resembling it in most aspects, but featuring custom designed arrays and concurrency operations. It will support [[object-oriented programming|object-oriented]] and non-object-oriented programming paradigms.
X10 uses the concept of parent and child relationships for tasks in order to prevent the lock stalemate that occurs when two or more processes wait for the other to finish before they can end. A parent has child tasks that themselves can become parents. However parents will have a command called "finish" that they can issue to children. Children cannot wait for a parent to finish but a parent can wait for a child before finishing. This approach of using a tree hierarchy and enforcing that all parent tasks start before child tasks do, a lockout never arises.<ref>Biever, C. "Computer revolution poses problems for programmers", New Scientist (Vol 193, Number 2594)</ref>
==External links==
|