X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dccf1b41e9c7b5a696f01abceaa2779fe65f154f..783573d576fa9ac43c007c6031bce185d882f92b:/examples/msg/README.doc diff --git a/examples/msg/README.doc b/examples/msg/README.doc index ef998ed57a..522000bacc 100644 --- a/examples/msg/README.doc +++ b/examples/msg/README.doc @@ -43,7 +43,7 @@ documentation, but it should remain readable directly. @section msg_ex_async Asynchronous communications In addition to the fully documented example of @ref -msg_ex_asynchronous_communications, there are several other examples +MSG_ex_asynchronous_communications, there are several other examples shipped in the archive: - Basic asynchronous communications. @@ -64,7 +64,7 @@ shipped in the archive: The @ref MSG_comm_waitany function is useful when you want to block until one activity of the set completes, no matter which terminates first. - + @section msg_ex_process Acting on Processes - Creating processes. @@ -85,6 +85,12 @@ shipped in the archive: @ref examples/msg/process-migration/process-migration.c \n Processes can move or be moved from a host to another with the @ref MSG_process_migrate function. + - Yielding to other processes. + @ref examples/msg/process-yield/process-yield.c\n + The @ref MSG_process_yield function interrupts the execution of the + current process, leaving a chance to run to the other processes + that are ready to run at the exact same timestamp + - Controling the process life cycle from the XML. @ref examples/msg/process-startkilltime/process-startkilltime.c \n You can specify a start time and a kill time in the deployment @@ -227,14 +233,6 @@ also the tesh files in the example directories for details. @section msg_ex_apps Examples of Full Applications - - Parallel Matrix Multiplication. - @ref examples/msg/app-pmm/app-pmm.c \n - This little application multiplies two matrices in parallel. Each - of the 9 processes computes a sub-block of the result, with the - sub-blocks of the input matrices exchanged between the processes. \n - This is a classical assignment in MPI lectures, here implemented - in MSG. - - Chord P2P protocol. @ref examples/msg/dht-chord/dht-chord.c \n This example implements the well known Chord protocol, @@ -276,6 +274,7 @@ top of the example file). @example examples/msg/async-wait/async-wait.c @example examples/msg/async-waitall/async-waitall.c @example examples/msg/async-waitany/async-waitany.c +@example examples/msg/async-yield/async-yield.c @example examples/msg/process-create/process-create.c @example examples/msg/process-suspend/process-suspend.c @@ -300,7 +299,6 @@ top of the example file). @example examples/msg/actions-comm/actions-comm.c @example examples/msg/actions-storage/actions-storage.c -@example examples/msg/app-pmm/app-pmm.c @example examples/msg/dht-chord/dht-chord.c @example examples/msg/task-priority/task-priority.c