Click or drag to resize
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)
Syntax
public static int mpfr_buildopt_sharedcache_p()

Return Value

Type: Int32
Return 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 that --enable-shared-cache compile option was used.
Assert.IsTrue(mpfr_lib.mpfr_buildopt_sharedcache_p() == 0);
See Also