]> AND Public Git Repository - simgrid.git/blobdiff - src/smpi/smpitools.sh
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Welcome to simgrid::smpi::Op
[simgrid.git] / src / smpi / smpitools.sh
index bb41e7c8ccc65d084d3fd59bbacacc7343f8f313..a8fc1a339c5a25744f93cee38d66eb8bc0001d9a 100644 (file)
@@ -1,5 +1,4 @@
 #!/bin/sh
-#---- smpitools.sh --------------------------------------------------------#
 
 # Copyright (c) 2013-2014. The SimGrid Team.
 # All rights reserved.
@@ -10,8 +9,7 @@
 SAVEIFS="$IFS"
 LISTSEP="$(printf '\b')"
 
-# Create a temporary file, with its name of the form $1_XXX$2, where XXX is
-# replaced by an unique string.
+# Create a temporary file, with its name of the form $1_XXX$2, where XXX is replaced by an unique string.
 # $1: prefix, $2: suffix
 mymktemp () {
     tmp=$(mktemp --suffix="$2" "$1_XXXXXXXXXX" 2> /dev/null)
@@ -67,12 +65,9 @@ list_set () {
     list_add "$@"
 }
 
-# Get the content of a list: positional parameters ($1, $2, ...) are set to the
-# content of the list
+# Get the content of a list: positional parameters ($1, $2, ...) are set to the content of the list
 # $1: list
 # usage:  eval $(list_get list)
 list_get () {
     printf 'IFS="$LISTSEP"; eval set -- \\$%s; IFS="$SAVEIFS"' "$1"
 }
-
-#---- end of smpitools.sh -------------------------------------------------#