RuntimeOptions

[Source]

Pony struct for the Pony runtime options C struct that can be used to override the Pony runtime defaults via code compiled into the program.

The way this is done is by adding the following function to your Main actor:

  fun @runtime_override_defaults(rto: RuntimeOptions) =>

and then overriding the fields of rto (the RuntimeOptions instance) as needed.

NOTE: Command line arguments still any values set via @runtime_override_defaults.

The following example overrides the --ponyhelp argument to default it to true instead of false causing the compiled program to always display the Pony runtime help:

actor Main
  new create(env: Env) =>
    env.out.print("Hello, world.")

  fun @runtime_override_defaults(rto: RuntimeOptions) =>
    rto.ponyhelp = true
struct ref RuntimeOptions

Constructors

create

[Source]

new iso create()
: RuntimeOptions iso^

Returns

Public fields

var ponymaxthreads: U32 val

[Source]

Use N scheduler threads. Defaults to the number of cores (not hyperthreads) available. This can't be larger than the number of cores available.

var ponyminthreads: U32 val

[Source]

Minimum number of active scheduler threads allowed. Defaults to 0, meaning that all scheduler threads are allowed to be suspended when no work is available. This can't be larger than --ponymaxthreads if provided, or the physical cores available.

var ponynoscale: Bool val

[Source]

Don't scale down the scheduler threads. See --ponymaxthreads on how to specify the number of threads explicitly. Can't be used with --ponyminthreads.

var ponysuspendthreshold: U32 val

[Source]

Amount of idle time before a scheduler thread suspends itself to minimize resource consumption (max 1000 ms, min 1 ms). Defaults to 1 ms.

var ponycdinterval: U32 val

[Source]

Run cycle detection every N ms (max 1000 ms, min 10 ms). Defaults to 100 ms.

var ponygcinitial: USize val

[Source]

Defer garbage collection until an actor is using at least 2^N bytes. Defaults to 2^14.

var ponygcfactor: F64 val

[Source]

After GC, an actor will next be GC'd at a heap memory usage N times its current value. This is a floating point value. Defaults to 2.0.

var ponynoyield: Bool val

[Source]

Do not yield the CPU when no work is available.

var ponynoblock: Bool val

[Source]

Do not send block messages to the cycle detector.

var ponypin: Bool val

[Source]

Pin scheduler threads to CPU cores. The ASIO thread can also be pinned if --ponypinasio is set.

var ponypinasio: Bool val

[Source]

Pin the ASIO thread to a CPU the way scheduler threads are pinned to CPUs. Requires --ponypin to be set to have any effect.

var ponyversion: Bool val

[Source]

Print the version of the compiler and exit.

var ponyhelp: Bool val

[Source]

Print the runtime usage options and exit.

© 2016-2020, The Pony Developers
© 2014-2015, Causality Ltd.
Licensed under the BSD 2-Clause License.
https://stdlib.ponylang.io/builtin-RuntimeOptions