diff --git a/util/src/main/java/org/hyperledger/besu/util/platform/PlatformDetector.java b/util/src/main/java/org/hyperledger/besu/util/platform/PlatformDetector.java index 1e2c070393..1367c72106 100644 --- a/util/src/main/java/org/hyperledger/besu/util/platform/PlatformDetector.java +++ b/util/src/main/java/org/hyperledger/besu/util/platform/PlatformDetector.java @@ -104,6 +104,12 @@ public class PlatformDetector { return _glibc; } + /** + * Gets jemalloc version. + * + * @throws UnsatisfiedLinkError if the library cannot be found or dependent libraries are missing. + * @return the jemalloc version + */ public static String getJemalloc() { if (_jemalloc == null) { detectJemalloc();