mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
8 lines
117 B
C
8 lines
117 B
C
|
#define _GNU_SOURCE 1
|
||
|
#include <toku_pthread.h>
|
||
|
|
||
|
int toku_pthread_yield(void) {
|
||
|
pthread_yield();
|
||
|
return 0;
|
||
|
}
|