mpfr_libmpfr_buildopt_sharedcache_p Method |
Return a non-zero value if MPFR was compiled so that all threads share the same cache for one MPFR constant, 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_sharedcache_p()
Public Shared Function mpfr_buildopt_sharedcache_p As Integer
public:
static int mpfr_buildopt_sharedcache_p()
static member mpfr_buildopt_sharedcache_p : unit -> int
Return Value
Type:
Int32Return a non-zero value if MPFR was compiled so that all threads share the same cache for one MPFR constant, return zero otherwise.
Remarks
Return a non-zero value if MPFR was compiled so that all threads share the same cache for one MPFR constant,
like mpfr_const_pi(mpfr_t, mpfr_rnd_t) or mpfr_const_log2(mpfr_t, mpfr_rnd_t) (that is, MPFR was built with the
‘--enable-shared-cache’ configure option), return zero otherwise.
If the return value is non-zero, MPFR applications may need to be compiled with the ‘-pthread’ option.
Examples
Assert.IsTrue(mpfr_lib.mpfr_buildopt_sharedcache_p() == 0);
Assert.IsTrue(mpfr_lib.mpfr_buildopt_sharedcache_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