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