|
3 | 3 | #include <limits.h>
|
4 | 4 | #include <errno.h>
|
5 | 5 |
|
| 6 | +#include "options.h" |
6 | 7 | #include "julia.h"
|
7 | 8 | #include "julia_internal.h"
|
8 | 9 |
|
@@ -292,9 +293,17 @@ static const char opts[] =
|
292 | 293 | " information, see --bug-report=help.\n\n"
|
293 | 294 | " --heap-size-hint=<size>[<unit>] Forces garbage collection if memory usage is higher\n"
|
294 | 295 | " than the given value. The value may be specified as a\n"
|
295 |
| - " number of bytes, optionally in units of: B,\n" |
296 |
| - " K (kibibytes), M (mebibytes), G (gibibytes),\n" |
297 |
| - " T (tebibytes), or % (percentage of physical memory).\n\n" |
| 296 | + " number of bytes, optionally in units of: B, K (kibibytes),\n" |
| 297 | + " M (mebibytes), G (gibibytes), T (tebibytes), or % (percentage\n" |
| 298 | + " of physical memory).\n\n" |
| 299 | + " --hard-heap-limit=<size>[<unit>] Set a hard limit on the heap size: if we ever go above this\n" |
| 300 | + " limit, we will abort. The value may be specified as a\n" |
| 301 | + " number of bytes, optionally in units of: B, K (kibibytes),\n" |
| 302 | + " M (mebibytes), G (gibibytes) or T (tebibytes).\n\n" |
| 303 | + " --heap-target-increment=<size>[<unit>] Set an upper bound on how much the heap target\n" |
| 304 | + " can increase between consecutive collections. The value may be\n" |
| 305 | + " specified as a number of bytes, optionally in units of: B,\n" |
| 306 | + " K (kibibytes), M (mebibytes), G (gibibytes) or T (tebibytes).\n\n" |
298 | 307 | ;
|
299 | 308 |
|
300 | 309 | static const char opts_hidden[] =
|
|
0 commit comments