2013-04-16 23:57:30 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <windows.h>
|
|
|
|
|
2013-04-16 23:57:31 -04:00
|
|
|
// Note: pread and pwrite are not thread safe on the same fildes as they
|
|
|
|
// rely on the file offset
|
|
|
|
|
2013-04-16 23:57:30 -04:00
|
|
|
int64_t
|
|
|
|
pread(int fildes, void *buf, size_t nbyte, int64_t offset) {
|
2013-04-16 23:57:31 -04:00
|
|
|
int64_t r = _lseeki64(fildes, offset, SEEK_SET);
|
|
|
|
if (r>=0) {
|
|
|
|
assert(r==offset);
|
|
|
|
r = read(fildes, buf, nbyte);
|
|
|
|
}
|
2013-04-16 23:57:30 -04:00
|
|
|
// printf("%s: %d %p %u %I64d %I64d\n", __FUNCTION__, fildes, buf, nbyte, offset, r); fflush(stdout);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t
|
|
|
|
pwrite(int fildes, const void *buf, size_t nbyte, int64_t offset) {
|
2013-04-16 23:57:31 -04:00
|
|
|
int64_t r = _lseeki64(fildes, offset, SEEK_SET);
|
|
|
|
if (r>=0) {
|
|
|
|
assert(r==offset);
|
|
|
|
r = write(fildes, buf, nbyte);
|
|
|
|
}
|
2013-04-16 23:57:30 -04:00
|
|
|
// printf("%s: %d %p %u %I64d %I64d\n", __FUNCTION__, fildes, buf, nbyte, offset, r); fflush(stdout);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
fsync(int fd) {
|
|
|
|
int r = _commit(fd);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ftruncate(int fd, int64_t offset) {
|
2013-04-16 23:57:31 -04:00
|
|
|
int r = _chsize_s(fd, offset);
|
|
|
|
return r;
|
2013-04-16 23:57:30 -04:00
|
|
|
}
|
|
|
|
|