From a175314c3e5827eb193872241446f2f8f5c9d33c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:07:14 +0200 Subject: Adding upstream version 1:10.5.12. Signed-off-by: Daniel Baumann --- storage/mroonga/vendor/groonga/lib/thread.c | 59 +++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 storage/mroonga/vendor/groonga/lib/thread.c (limited to 'storage/mroonga/vendor/groonga/lib/thread.c') diff --git a/storage/mroonga/vendor/groonga/lib/thread.c b/storage/mroonga/vendor/groonga/lib/thread.c new file mode 100644 index 00000000..7e823ab3 --- /dev/null +++ b/storage/mroonga/vendor/groonga/lib/thread.c @@ -0,0 +1,59 @@ +/* -*- c-basic-offset: 2 -*- */ +/* + Copyright(C) 2015 Brazil + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License version 2.1 as published by the Free Software Foundation. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA +*/ + +#include "grn_ctx.h" + +static grn_thread_get_limit_func get_limit_func = NULL; +static void *get_limit_func_data = NULL; +static grn_thread_set_limit_func set_limit_func = NULL; +static void *set_limit_func_data = NULL; + +uint32_t +grn_thread_get_limit(void) +{ + if (get_limit_func) { + return get_limit_func(get_limit_func_data); + } else { + return 0; + } +} + +void +grn_thread_set_limit(uint32_t new_limit) +{ + if (!set_limit_func) { + return; + } + + set_limit_func(new_limit, set_limit_func_data); +} + +void +grn_thread_set_get_limit_func(grn_thread_get_limit_func func, + void *data) +{ + get_limit_func = func; + get_limit_func_data = data; +} + +void +grn_thread_set_set_limit_func(grn_thread_set_limit_func func, void *data) +{ + set_limit_func = func; + set_limit_func_data = data; +} -- cgit v1.2.3