Skip to content

Commit

Permalink
Summary: Incorrect formatting for doc; when showing in Github
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Leow committed Feb 4, 2012
1 parent 58fd8d8 commit 6f4fc30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -71,18 +71,19 @@ To install:
Step #4 above applies.

4b An easy way to determine if the Apache is 32-bit or 64-bit is to execute the following in the global zone:

# dtrace -qn 'syscall::: /execname == "httpd"/ { ab = (curpsinfo->pr_dmodel == PR_MODEL_ILP32) ? "32-bit" : "64-bit" ; exit(0); } END { printf("Apache: %s",ab); }'
Apache: 32-bit

4c Copy the right version and execute the examples to ensure it works in the non-global zone:

# zlogin zone-percona0
[root@zone-percona0 ~/]# cd ~/mod_usdt; mkdir trans32
[root@zone-percona0 ~/mod_usdt]# cp src/httpd-zone-32.d trans32/.
[root@zone-percona0 ~/mod_usdt]# dtrace -L trans32/ -s examples/http-requests-bylatency.d
dtrace: aggregation size lowered to 64k
Tracing. Hit CTRL-C to stop.
^C

microseconds
value ------------- Distribution ------------- count
512 | 0
Expand Down

0 comments on commit 6f4fc30

Please sign in to comment.