diff options
author | HoneyryderChuck <[email protected]> | 2024-10-29 16:48:57 +0000 |
---|---|---|
committer | git <[email protected]> | 2024-11-06 10:17:41 +0000 |
commit | e5860e565467cb330f2c7b9ae140a1e4b89c0b71 (patch) | |
tree | 6eea742cd0fe7e416ff27f4f83ac9c4e18f49647 /ext/openssl/ossl_bn.c | |
parent | 3b9896acfcaf992ac233578ca8ec5bb69978de4a (diff) |
[ruby/openssl] move ractor safe macro to ossl.h
in order to import or define the RUBY_TYPED_FROZEN_SHAREABLE macro.
https://github.com/ruby/openssl/commit/b8504c2215
Diffstat (limited to 'ext/openssl/ossl_bn.c')
-rw-r--r-- | ext/openssl/ossl_bn.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/openssl/ossl_bn.c b/ext/openssl/ossl_bn.c index 2d310c4741..ea19914c57 100644 --- a/ext/openssl/ossl_bn.c +++ b/ext/openssl/ossl_bn.c @@ -10,10 +10,6 @@ /* modified by Michal Rokos <[email protected]> */ #include "ossl.h" -#ifdef HAVE_RB_EXT_RACTOR_SAFE -#include <ruby/ractor.h> -#endif - #define NewBN(klass) \ TypedData_Wrap_Struct((klass), &ossl_bn_type, 0) #define SetBN(obj, bn) do { \ |