Minor changes
This commit is contained in:
parent
5808757a6c
commit
54652db007
2 changed files with 7 additions and 5 deletions
|
@ -13,4 +13,4 @@
|
||||||
- Properties can be retrieve with `./pool.sh getp <poolname> <procid> <propname>`
|
- Properties can be retrieve with `./pool.sh getp <poolname> <procid> <propname>`
|
||||||
- Finally, all the processes output file can be retrieve with `./pool.sh ls <poolname>`
|
- Finally, all the processes output file can be retrieve with `./pool.sh ls <poolname>`
|
||||||
|
|
||||||
**Finale quote:** No checks are performed on the pool.sh arguments. Be sure to use the right ones.
|
**Finale quote:** No checks are performed on the pool.sh arguments. Be sure to use the right ones. Defaults configuration requires access to the `/tmp` directory.
|
||||||
|
|
10
pool.sh
10
pool.sh
|
@ -58,7 +58,7 @@ create() {
|
||||||
}
|
}
|
||||||
|
|
||||||
remove() {
|
remove() {
|
||||||
refresh
|
refresh # Refresh process status and load status
|
||||||
[ $nproc -gt 0 ] && abort "Processes are still running in the pool!"
|
[ $nproc -gt 0 ] && abort "Processes are still running in the pool!"
|
||||||
rm -rf "$pool"
|
rm -rf "$pool"
|
||||||
}
|
}
|
||||||
|
@ -80,11 +80,13 @@ refresh() {
|
||||||
|
|
||||||
run() {
|
run() {
|
||||||
refresh
|
refresh
|
||||||
|
# Wait for room in the pool
|
||||||
while [ $nproc -ge $maxproc ]
|
while [ $nproc -ge $maxproc ]
|
||||||
do
|
do
|
||||||
sleep $REFRESH_EVERY
|
sleep $REFRESH_EVERY
|
||||||
refresh
|
refresh
|
||||||
done
|
done
|
||||||
|
# Create new process
|
||||||
nproc=$(( nproc + 1 ))
|
nproc=$(( nproc + 1 ))
|
||||||
procid=$(( lastprocid + 1 ))
|
procid=$(( lastprocid + 1 ))
|
||||||
lastprocid=$procid
|
lastprocid=$procid
|
||||||
|
@ -92,9 +94,9 @@ run() {
|
||||||
$PROC_CMD > "$pool/out_$procid" &
|
$PROC_CMD > "$pool/out_$procid" &
|
||||||
procpid=$!
|
procpid=$!
|
||||||
[ -z "$procs" ] && procs="$procpid" || procs="$procs $procpid"
|
[ -z "$procs" ] && procs="$procpid" || procs="$procs $procpid"
|
||||||
write_status
|
write_status # Update status
|
||||||
write_process
|
write_process # Create process properties
|
||||||
echo $procid
|
echo $procid # Return process id
|
||||||
}
|
}
|
||||||
|
|
||||||
cat_output() {
|
cat_output() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue