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)
Syntaxpublic static int mpfr_buildopt_tls_p()
Public Shared Function mpfr_buildopt_tls_p As Integer
public:
static int mpfr_buildopt_tls_p()
static member mpfr_buildopt_tls_p : unit -> int
Return Value
Type:
Int32Return 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.IsTrue(mpfr_lib.mpfr_buildopt_tls_p() != 0);
Assert.IsTrue(mpfr_lib.mpfr_buildopt_tls_p() <> 0)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
See Also