[commit: ghc] master: Docs: it's `gv --orientation=seascape` nowadays (#10497) (0a086c8)

git at git.haskell.org git at git.haskell.org
Fri Jun 12 17:40:47 UTC 2015


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/0a086c82638c443df10fa2f80896e30107e546e3/ghc

>---------------------------------------------------------------

commit 0a086c82638c443df10fa2f80896e30107e546e3
Author: Thomas Miedema <thomasmiedema at gmail.com>
Date:   Fri Jun 12 19:38:03 2015 +0200

    Docs: it's `gv --orientation=seascape` nowadays (#10497)
    
    [skip ci]


>---------------------------------------------------------------

0a086c82638c443df10fa2f80896e30107e546e3
 docs/users_guide/profiling.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/users_guide/profiling.xml b/docs/users_guide/profiling.xml
index 26d18a0..d14419b 100644
--- a/docs/users_guide/profiling.xml
+++ b/docs/users_guide/profiling.xml
@@ -1335,7 +1335,7 @@ profile of your program as it runs.  Simply generate an incremental
 heap profile as described in the previous section.  Run <command>gv</command> on your
 profile:
 <screen>
-  gv -watch -seascape FOO.ps
+  gv -watch -orientation=seascape FOO.ps
 </screen>
 If you forget the <literal>-watch</literal> flag you can still select
 "Watch file" from the "State" menu.  Now each time you generate a new
@@ -1348,7 +1348,7 @@ This can all be encapsulated in a little script:
   #!/bin/sh
   head -`fgrep -n END_SAMPLE FOO.hp | tail -1 | cut -d : -f 1` FOO.hp \
     | hp2ps > FOO.ps
-  gv -watch -seascape FOO.ps &
+  gv -watch -orientation=seascape FOO.ps &
   while [ 1 ] ; do
     sleep 10 # We generate a new profile every 10 seconds.
     head -`fgrep -n END_SAMPLE FOO.hp | tail -1 | cut -d : -f 1` FOO.hp \



More information about the ghc-commits mailing list