mirror of
https://github.com/yugr/Implib.so
synced 2026-06-08 18:33:41 +00:00
86 lines
1.3 KiB
C
86 lines
1.3 KiB
C
/*
|
|
* Copyright 2025 Yury Gribov
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Use of this source code is governed by MIT license that can be
|
|
* found in the LICENSE.txt file.
|
|
*/
|
|
|
|
#include <dlfcn.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
|
|
#include "interposed.h"
|
|
|
|
#if defined __mips && __mips == 32
|
|
// For some reason pthread_create fails with EAGAIN
|
|
#define N 32
|
|
#else
|
|
#define N 128
|
|
#endif
|
|
|
|
static int args[N];
|
|
static pthread_t tids[N];
|
|
static pthread_barrier_t b;
|
|
|
|
void *run(void *arg_) {
|
|
int rc = pthread_barrier_wait(&b);
|
|
if (PTHREAD_BARRIER_SERIAL_THREAD != rc && 0 != rc)
|
|
abort();
|
|
|
|
int *arg = (int *)arg_;
|
|
|
|
int (*foo)(int);
|
|
switch(*arg % 5) {
|
|
case 0:
|
|
foo = foo0;
|
|
break;
|
|
case 1:
|
|
foo = foo1;
|
|
break;
|
|
case 2:
|
|
foo = foo2;
|
|
break;
|
|
case 3:
|
|
foo = foo3;
|
|
break;
|
|
case 4:
|
|
foo = foo4;
|
|
break;
|
|
default:
|
|
abort();
|
|
}
|
|
|
|
foo(*arg);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
for (int i = 0; i < N; ++i)
|
|
args[i] = i;
|
|
|
|
if (0 != pthread_barrier_init(&b, 0, N))
|
|
abort();
|
|
|
|
for (int i = 0; i < N; ++i) {
|
|
if (0 != pthread_create(&tids[i], 0, run, &args[i]))
|
|
abort();
|
|
}
|
|
|
|
for (int i = 0; i < N; ++i) {
|
|
if (0 != pthread_join(tids[i], 0))
|
|
abort();
|
|
}
|
|
|
|
if (bar() == 21)
|
|
printf("Correct result\n");
|
|
|
|
return 0;
|
|
}
|