aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2016-07-25 17:14:35 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2017-03-10 10:36:40 -0500
commit9a3de35bbd507cd58e9116a9f8e214a0ed5fce36 (patch)
tree94d94a464ea4b052af582172d72919527049f3f9
parent6bf2674abc765b6e1fcdd4afbc806bcdad730ed7 (diff)
Update documentation for rt_launch
Omit budget and period when launching tasks inside reservations.
-rw-r--r--doc/howto-use-resctl.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/howto-use-resctl.md b/doc/howto-use-resctl.md
index a781203..3276e0e 100644
--- a/doc/howto-use-resctl.md
+++ b/doc/howto-use-resctl.md
@@ -109,9 +109,10 @@ The same options (`-p` and `-r`) are also understood by the `rt_launch` utility.
109For example, to launch a `find` process in reservation 1000 on core 1, use the following command: 109For example, to launch a `find` process in reservation 1000 on core 1, use the following command:
110 110
111``` 111```
112rt_launch -p 1 -r 1000 10 100 find / 112rt_launch -p 1 -r 1000 find /
113``` 113```
114 114
115While `rt_launch` usually requires a budget and period to be specified when used with a process-based scheduler plugin, this is not required when launching a process inside a reservation: since only the parameters of the reservation are relevant for scheduling purposes, the per-process parameters are simply omitted.
115 116
116### Attaching an already running task to a reservation 117### Attaching an already running task to a reservation
117 118