Click or drag to resize
mpfr_libmpfr_buildopt_tls_p Method
Return a non-zero value if MPFR was compiled as thread safe using compiler-level Thread Local Storage, return zero otherwise.

Namespace:  Math.Mpfr.Native
Assembly:  Math.Mpfr.Native (in Math.Mpfr.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static int mpfr_buildopt_tls_p()

Return Value

Type: Int32
Return a non-zero value if MPFR was compiled as thread safe using compiler-level Thread Local Storage, return zero otherwise.
Remarks

Return a non-zero value if MPFR was compiled with decimal float support (that is, MPFR was built with the --enable-decimal-float configure option), return zero otherwise.

Examples
// Assert that --enable-thread-safe compile option was used.
Assert.IsTrue(mpfr_lib.mpfr_buildopt_tls_p() != 0);
See Also