mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
2d037dc6cc
git-svn-id: file:///svn/toku/tokudb@10480 c7de825b-a66e-492c-adef-691d508d4ae1
35 lines
494 B
C
35 lines
494 B
C
#ifndef _TOKUWIN_UNISTD_H
|
|
#define _TOKUWIN_UNISTD_H
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <io.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <getopt.h>
|
|
|
|
int fsync(int fildes);
|
|
|
|
int
|
|
ftruncate(int fildes, int64_t offset);
|
|
|
|
int64_t
|
|
pwrite(int fildes, const void *buf, size_t nbyte, int64_t offset);
|
|
|
|
int64_t
|
|
pread(int fildes, void *buf, size_t nbyte, int64_t offset);
|
|
|
|
unsigned int
|
|
sleep(unsigned int);
|
|
|
|
int
|
|
usleep(unsigned int);
|
|
|
|
#if defined(__cplusplus)
|
|
};
|
|
#endif
|
|
|
|
#endif
|
|
|