0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

osx compile

This commit is contained in:
Mathias Stearn 2010-12-22 02:44:40 -05:00
parent c76a27e18d
commit af55128c2b

View File

@ -136,7 +136,6 @@ public:
#ifndef O_NOATIME
#define O_NOATIME 0
#define lseek64 lseek
#endif
void open(const char *filename, bool readOnly=false ) {
@ -150,7 +149,7 @@ public:
_bad = false;
}
void write(fileofs o, const char *data, unsigned len) {
lseek64(fd, o, SEEK_SET);
lseek(fd, o, SEEK_SET);
err( ::write(fd, data, len) == (int) len );
}
void read(fileofs o, char *data, unsigned len) {