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