fix commit error in mutex_test

when the branch implementing mutex_test was rebased and merged,
a rebasing error was missed: the isc_threadresult and isc_threadarg
types no longer exist.
This commit is contained in:
Evan Hunt 2023-04-28 02:37:29 +01:00
parent af5ca782b7
commit 3460fe73e2

View file

@ -81,8 +81,8 @@ static size_t expected_counter = SIZE_MAX;
static isc_mutex_t lock;
static pthread_mutex_t mutex;
static isc_threadresult_t
pthread_mutex_thread(isc_threadarg_t arg) {
static void *
pthread_mutex_thread(void *arg) {
size_t cont = *(size_t *)arg;
for (size_t i = 0; i < loops; i++) {
@ -94,11 +94,11 @@ pthread_mutex_thread(isc_threadarg_t arg) {
isc_pause_n(cont);
}
return ((isc_threadresult_t)0);
return (NULL);
}
static isc_threadresult_t
isc_mutex_thread(isc_threadarg_t arg) {
static void *
isc_mutex_thread(void *arg) {
size_t cont = *(size_t *)arg;
for (size_t i = 0; i < loops; i++) {
@ -110,7 +110,7 @@ isc_mutex_thread(isc_threadarg_t arg) {
isc_pause_n(cont);
}
return ((isc_threadresult_t)0);
return (NULL);
}
ISC_RUN_TEST_IMPL(isc_mutex_benchmark) {