diff options
author | Araq <rumpf_a@web.de> | 2014-12-04 10:12:32 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-04 10:12:32 +0100 |
commit | e27ab367318ceb01a023b367ac908c137e3223c7 (patch) | |
tree | aaa726c5f0ff99e7a1bc02c6da046ce1b95a6ea0 /doc/gc.txt | |
parent | 85d83fd8cb43a1d49a18a6f6329662da47059646 (diff) | |
download | Nim-e27ab367318ceb01a023b367ac908c137e3223c7.tar.gz |
implements 'defer'
Diffstat (limited to 'doc/gc.txt')
-rw-r--r-- | doc/gc.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/gc.txt b/doc/gc.txt index fdb1d1b6c..9398262d9 100644 --- a/doc/gc.txt +++ b/doc/gc.txt @@ -47,7 +47,8 @@ Realtime support ================ To enable realtime support, the symbol `useRealtimeGC`:idx: needs to be -defined. With this switch the GC supports the following operations: +defined via ``--define:useRealtimeGC`` (you can put this into your config +file as well). With this switch the GC supports the following operations: .. code-block:: nim proc GC_setMaxPause*(MaxPauseInUs: int) |