Skip to content

Commit 8b5983b

Browse files
authored
Merge branch 'master' into remotechannel-empty
2 parents 8537424 + 729ba6a commit 8b5983b

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/macros.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ processes to have execute the expression.
185185
186186
Similar to calling `remotecall_eval(Main, procs, expr)`, but with two extra features:
187187
188-
- `using` and `import` statements run on the calling process first, to ensure
189-
packages are precompiled.
190-
- The current source file path used by `include` is propagated to other processes.
188+
- `using` and `import` statements run on the calling process first, to ensure
189+
packages are precompiled.
190+
- The current source file path used by `include` is propagated to other processes.
191191
"""
192192
macro everywhere(ex)
193193
procs = GlobalRef(@__MODULE__, :procs)

src/managers.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ addprocs([
111111
version is used on all remote machines because serialization and code distribution might
112112
fail otherwise.
113113
114-
* `exeflags`: additional flags passed to the worker processes.
114+
* `exeflags`: additional flags passed to the worker processes. It can either be a `Cmd`, a `String`
115+
holding one flag, or a collection of strings, with one element per flag.
116+
E.g. `\`--threads=auto project=.\``, `"--compile-trace=stderr"` or `["--threads=auto", "--compile=all"]`.
115117
116118
* `topology`: Specifies how the workers connect to each other. Sending a message between
117119
unconnected workers results in an error.

0 commit comments

Comments
 (0)