diff options
author | Adam Sandberg Ericsson <adam@sandbergericsson.se> | 2021-07-23 22:08:31 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-08-02 04:13:50 -0400 |
commit | 2e0f4ca128d17a7161fa41ee9e82315a1cddffb7 (patch) | |
tree | 0a5329e1376ad8ca30fe975021d4b89d07d87351 /docs/users_guide | |
parent | 2de8f031e7f81745c23656f6a8cfb43199ce337c (diff) | |
download | haskell-2e0f4ca128d17a7161fa41ee9e82315a1cddffb7.tar.gz |
docs: rename the "Running a compiled program" section in the users guide
This hopefully makes it easier to find the right section when scanning
the table of contents.
Diffstat (limited to 'docs/users_guide')
-rw-r--r-- | docs/users_guide/runtime_control.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/users_guide/runtime_control.rst b/docs/users_guide/runtime_control.rst index 4b0ca7f0b0..f22c941dac 100644 --- a/docs/users_guide/runtime_control.rst +++ b/docs/users_guide/runtime_control.rst @@ -1,7 +1,7 @@ .. _runtime-control: -Running a compiled program -========================== +Runtime system (RTS) options +============================ .. index:: single: runtime control of Haskell programs @@ -9,7 +9,7 @@ Running a compiled program single: RTS options To make an executable program, the GHC system compiles your code and -then links it with a non-trivial runtime system (RTS), which handles +then links it with a non-trivial runtime system, which handles storage management, thread scheduling, profiling, and so on. The RTS has a lot of options to control its behaviour. For example, you |