Add javadoc (#5329)

Signed-off-by: Fabio Di Fabio <fabio.difabio@consensys.net>
pull/5334/head
Fabio Di Fabio 2 years ago committed by GitHub
parent a9b906cba5
commit 97fb61df94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      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();

Loading…
Cancel
Save