Author:admin

Date:2008-09-19T07:54:43.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@25 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
jfiat
2008-09-19 07:54:43 +00:00
parent c0aba35d72
commit 8a46c5d793
247 changed files with 1257 additions and 47 deletions

View File

@@ -1,5 +1,6 @@
[[Property:title|Compilation of multithreaded systems]]
[[Property:weight|3]]
[[Property:uuid|24e474b5-3cb7-16ff-365f-73be8e73bd56]]
==Settings==
* Set the option multithreaded in the project settings under Advanced.
* Do not use a non-multi-threaded precompiled library. The corresponding multi-threaded libraries of base, WEL and Vision2 should be located in $ISE_EIFFEL/precomp/spec/$PLATFORM/ with the mt prefix.

View File

@@ -1,5 +1,6 @@
[[Property:title|Multithread FAQ]]
[[Property:weight|6]]
[[Property:uuid|a0e1ddf6-cc19-b6f8-0e05-075908ddd347]]
===I've launched several threads and they do not seem to be executed:===
The thread that launched the several threads may be dead before its children.

View File

@@ -1,5 +1,6 @@
[[Property:title|Thread library overview]]
[[Property:weight|1]]
[[Property:uuid|2bdeeb91-1917-f443-ebfc-4f877107edd7]]
This is only a quick overview of the [[EiffelThread Library|Thread library]] . The reference of this library should give all its content.
==Creating and launching threads: the class THREAD (deferred)==
@@ -40,7 +41,7 @@ To run the thread, use the feature <eiffel>launch</eiffel> from <eiffel>THREAD</
<code> my_thread.launch</code>
On the Eiffel side, the procedure <eiffel>execute</eiffel> will be launched. This procedures deferred in class <eiffel>THREAD</eiffel>, you have to define it in <eiffel>MY_THREAD</eiffel>.
On the C side, a C thread will be created and launched.
{{warning| '''Caution''': you may call <eiffel>join_all</eiffel> and the end of the execution of the parent thread if you do not want it to die before its child, otherwise they may prematurely terminate.
{{warning| '''Caution''': you may call <eiffel>join_all</eiffel> and the end of the execution of the parent thread if you do not want it to die before its child, otherwise they may prematurely terminate. }}
==The class MUTEX==
The implementation of the class <eiffel>MUTEX</eiffel> is mapped on the C standard thread library. An instance of class <eiffel>MUTEX</eiffel> can be shared between different thread.

View File

@@ -1,5 +1,6 @@
[[Property:title|EiffelThread]]
[[Property:weight|0]]
[[Property:uuid|d1e4c873-3e04-f49a-f6d2-6b9845f1e109]]
The EiffelThread library includes the main components needed to build multithreaded systems. <br/>
See:
* [[EiffelThread: Introduction|Introduction]]