state in *OLDSTATE if OLDSTATE is not NULL. */ extern int pthread_setcancelstate (int __state, int *__oldstate) __THROW; /* Set cancellation state of current thread to TYPE, returning the old type in *OLDTYPE if OLDTYPE is not NULL. */ extern int pthread_setcanceltype (int __ty...
But you should have __ATOMIC_ACQ_REL defined. What platform are you building for? Can you provide the output of ./configdata --dump This is likely due to gcc-4.2 not supporting modern atomics. I will see if this builds with the modern gcc, but it is a rather unpleasant situation if ...
and ensuring that an object is not free’d until the count hits zero. This is implemented using per-object locks, and the CRYPTO_atomic_add API. You can see some relatively simple examples of the up_ref API in test/crltest.c which also ...
816 #if !defined(OPENSSL_NO_DGRAM) && !defined(OPENSSL_NO_SOCK) 817 ADD_TEST(test_bio_dgram_pair); 818 #endif Update the test framework so that the need for test_main is removed. … July 18, 2017 11:48 819 return 1; Implement...