diff options
author | Björn-Egil Dahlberg <[email protected]> | 2009-11-26 20:08:35 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-02-08 18:05:12 +0100 |
commit | e3c82f04a315824e03c57c8395b95ec132ca5ee1 (patch) | |
tree | e07337446f2e11d9477640b7afc3f4837c122f6e /lib/tools/src/Makefile | |
parent | 51bb4c6ae1e4d61304aee5b4bf77279d838da84a (diff) | |
download | otp-e3c82f04a315824e03c57c8395b95ec132ca5ee1.tar.gz otp-e3c82f04a315824e03c57c8395b95ec132ca5ee1.tar.bz2 otp-e3c82f04a315824e03c57c8395b95ec132ca5ee1.zip |
Add lock profiling tool
The Lock profiling tool, lcnt, can make use of the internal lock statistics
when the runtime system is built with this feature enabled.
This provides a mechanism to examine potential lock bottlenecks within
the runtime itself.
Diffstat (limited to 'lib/tools/src/Makefile')
-rw-r--r-- | lib/tools/src/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/tools/src/Makefile b/lib/tools/src/Makefile index 81933cda14..2105f51d5f 100644 --- a/lib/tools/src/Makefile +++ b/lib/tools/src/Makefile @@ -34,11 +34,13 @@ RELSYSDIR = $(RELEASE_PATH)/lib/tools-$(VSN) # Common Macros # ---------------------------------------------------- -MODULES= cover \ +MODULES= \ + cover \ cover_web \ eprof \ fprof \ cprof \ + lcnt \ instrument \ make \ tags \ |