mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
510286c76f
git-svn-id: file:///svn/toku/tokudb@12442 c7de825b-a66e-492c-adef-691d508d4ae1
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;
|
|
}
|