mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
7060dff3b5
git-svn-id: file:///svn/toku/tokudb@11339 c7de825b-a66e-492c-adef-691d508d4ae1
38 lines
786 B
C
38 lines
786 B
C
#include "toku_portability.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <assert.h>
|
|
#include <unistd.h>
|
|
#include <toku_pthread.h>
|
|
|
|
static void *myfunc1(void *arg) {
|
|
printf("%s %p %lu\n", __FUNCTION__, arg, GetCurrentThreadId());
|
|
fflush(stdout);
|
|
sleep(10);
|
|
return arg;
|
|
}
|
|
|
|
static void *myfunc2(void *arg) {
|
|
printf("%s %p %lu\n", __FUNCTION__, arg, GetCurrentThreadId());
|
|
fflush(stdout);
|
|
sleep(10);
|
|
return arg;
|
|
}
|
|
|
|
int main(void) {
|
|
#define N 10
|
|
toku_pthread_t t[N];
|
|
int i;
|
|
|
|
for (i=0; i<N; i++) {
|
|
toku_pthread_create(&t[i], NULL, i & 1 ? myfunc1 : myfunc2, (void *)i);
|
|
}
|
|
for (i=0; i<N; i++) {
|
|
void *ret;
|
|
toku_pthread_join(t[i], &ret);
|
|
assert(ret == (void*)i);
|
|
}
|
|
return 0;
|
|
}
|
|
|