Browse Source

Test

etomic
jl777 7 years ago
parent
commit
bea2f74a87
  1. 18
      crypto777/cJSON.c
  2. 2
      iguana/m_mm

18
crypto777/cJSON.c

@ -1132,9 +1132,9 @@ cJSON *cJSON_CreateArray(void)
cJSON *item = cJSON_New_Item(); cJSON *item = cJSON_New_Item();
if ( item ) if ( item )
item->type = cJSON_Array; item->type = cJSON_Array;
#ifdef CJSON_GARBAGECOLLECTION //#ifdef CJSON_GARBAGECOLLECTION
cJSON_register(item); // cJSON_register(item);
#endif //#endif
return(item); return(item);
} }
@ -1143,17 +1143,17 @@ cJSON *cJSON_CreateObject(void)
cJSON *item = cJSON_New_Item(); cJSON *item = cJSON_New_Item();
if ( item ) if ( item )
item->type = cJSON_Object; item->type = cJSON_Object;
#ifdef CJSON_GARBAGECOLLECTION //#ifdef CJSON_GARBAGECOLLECTION
cJSON_register(item); // cJSON_register(item);
#endif //#endif
return item; return item;
} }
void free_json(cJSON *item) void free_json(cJSON *item)
{ {
#ifdef CJSON_GARBAGECOLLECTION //#ifdef CJSON_GARBAGECOLLECTION
cJSON_unregister(item); // cJSON_unregister(item);
#endif //#endif
if ( item != 0 ) if ( item != 0 )
cJSON_Delete(item); cJSON_Delete(item);
} }

2
iguana/m_mm

@ -1,3 +1,3 @@
cd secp256k1; ./m_unix; cd .. cd secp256k1; ./m_unix; cd ..
cd ../crypto777; ./m_LP; cd ../iguana cd ../crypto777; ./m_LP; cd ../iguana
gcc -DCJSON_GARBAGECOLLECTION -g -o marketmaker -I../crypto777 exchanges/mm.c ../crypto777/cJSON.c mini-gmp.c secp256k1.o ../agents/libcrypto777.a -lnanomsg -lcurl -lpthread -lm gcc -g -o marketmaker -I../crypto777 exchanges/mm.c ../crypto777/cJSON.c mini-gmp.c secp256k1.o ../agents/libcrypto777.a -lnanomsg -lcurl -lpthread -lm

Loading…
Cancel
Save