From 39694873766f970358d3819356a8c42f3435c3fd Mon Sep 17 00:00:00 2001 From: andy5995 Date: Tue, 23 Jul 2019 23:43:59 -0500 Subject: [PATCH 1/3] README.md:fix 2 typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 67828484b2..7dcf7722a3 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Building with partial threading support ---------------------------------------- Although json-c does not support fully multi-threaded access to -object trees, it has some code to help make use in threaded programs +object trees, it has some code to help make threaded programs a bit safer. Currently, this is limited to using atomic operations for json_object_get() and json_object_put(). @@ -131,7 +131,7 @@ default. You may turn it on by adjusting your configure command with: --enable-threading Separately, the default hash function used for object field keys, -lh_char_hash, uses a compare-and-swap operation to ensure the randomly +lh_char_hash, uses a compare-and-swap operation to ensure the random seed is only generated once. Because this is a one-time operation, it is always compiled in when the compare-and-swap operation is available. From e2f46b9f79466d5121df1633259ff63dbbe2e5b1 Mon Sep 17 00:00:00 2001 From: andy5995 Date: Thu, 25 Jul 2019 22:55:07 -0500 Subject: [PATCH 2/3] partial revert (make use) [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7dcf7722a3..5e39b8fc84 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Building with partial threading support ---------------------------------------- Although json-c does not support fully multi-threaded access to -object trees, it has some code to help make threaded programs +object trees, it has some code to help make use in threaded programs a bit safer. Currently, this is limited to using atomic operations for json_object_get() and json_object_put(). From 1c7e891e440dea7a40f592ff4306b19a65e9933c Mon Sep 17 00:00:00 2001 From: andy5995 Date: Fri, 26 Jul 2019 12:59:24 -0500 Subject: [PATCH 3/3] "make its use in" [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e39b8fc84..b37e0cb657 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ Building with partial threading support ---------------------------------------- Although json-c does not support fully multi-threaded access to -object trees, it has some code to help make use in threaded programs +object trees, it has some code to help make its use in threaded programs a bit safer. Currently, this is limited to using atomic operations for json_object_get() and json_object_put().