X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fd0_blind_id.git;a=blobdiff_plain;f=d0_bignum-tommath.c;h=b2a39134dcf83be6421e7a261b2e598f7a3a6694;hp=b3230fd6d4e422b7b47908ef4cb73523b010467f;hb=a0a5771a9d31aa0a0b4709014e3a6af226f915d8;hpb=7fd30783216b874f085f19fff2d22ff2133b1fd6 diff --git a/d0_bignum-tommath.c b/d0_bignum-tommath.c index b3230fd..b2a3913 100644 --- a/d0_bignum-tommath.c +++ b/d0_bignum-tommath.c @@ -123,7 +123,7 @@ void d0_bignum_SHUTDOWN(void) D0_BOOL d0_iobuf_write_bignum(d0_iobuf_t *buf, const d0_bignum_t *bignum) { - static unsigned char numbuf[65536]; // FIXME make threadsafe + static __thread unsigned char numbuf[65536]; size_t count = 0; numbuf[0] = (mp_iszero(&bignum->z) ? 0 : (bignum->z.sign == MP_ZPOS) ? 1 : 3); if((numbuf[0] & 3) != 0) // nonzero @@ -138,7 +138,7 @@ D0_BOOL d0_iobuf_write_bignum(d0_iobuf_t *buf, const d0_bignum_t *bignum) d0_bignum_t *d0_iobuf_read_bignum(d0_iobuf_t *buf, d0_bignum_t *bignum) { - static unsigned char numbuf[65536]; // FIXME make threadsafe + static __thread unsigned char numbuf[65536]; size_t count = sizeof(numbuf); if(!d0_iobuf_read_packet(buf, numbuf, &count)) return NULL; @@ -425,7 +425,7 @@ d0_bignum_t *d0_bignum_gcd(d0_bignum_t *r, d0_bignum_t *s, d0_bignum_t *t, const char *d0_bignum_tostring(const d0_bignum_t *x, unsigned int base) { - static char str[65536]; // FIXME make threadsafe + static __thread char str[65536]; mp_toradix_n((mp_int *) &x->z, str, base, sizeof(str)); return str; }