mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
0d44815bf5
git-svn-id: file:///svn/toku/tokudb.1032b@7778 c7de825b-a66e-492c-adef-691d508d4ae1
6 lines
110 B
C
6 lines
110 B
C
#define _GNU_SOURCE 1
|
|
#include <toku_pthread.h>
|
|
|
|
int toku_pthread_yield(void) {
|
|
return pthread_yield();
|
|
}
|