Implemented Mac OS X change for DrZiploc. Issue #145.
git-svn-id: http://picoc.googlecode.com/svn/trunk@608 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
parent
f41a1c5f51
commit
4555e8456f
|
@ -2,6 +2,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#include <fcntl.h>
|
||||||
#include "../interpreter.h"
|
#include "../interpreter.h"
|
||||||
|
|
||||||
#ifndef BUILTIN_MINI_STDLIB
|
#ifndef BUILTIN_MINI_STDLIB
|
||||||
|
@ -82,7 +83,12 @@ void UnistdFchdir(struct ParseState *Parser, struct Value *ReturnValue, struct V
|
||||||
|
|
||||||
void UnistdFdatasync(struct ParseState *Parser, struct Value *ReturnValue, struct Value **Param, int NumArgs)
|
void UnistdFdatasync(struct ParseState *Parser, struct Value *ReturnValue, struct Value **Param, int NumArgs)
|
||||||
{
|
{
|
||||||
|
#ifndef F_FULLSYNC
|
||||||
ReturnValue->Val->Integer = fdatasync(Param[0]->Val->Integer);
|
ReturnValue->Val->Integer = fdatasync(Param[0]->Val->Integer);
|
||||||
|
#else
|
||||||
|
/* Mac OS X equivalent */
|
||||||
|
ReturnValue->Val->Integer = fcntl(Param[0]->Val->Integer, F_FULLFSYNC);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void UnistdFork(struct ParseState *Parser, struct Value *ReturnValue, struct Value **Param, int NumArgs)
|
void UnistdFork(struct ParseState *Parser, struct Value *ReturnValue, struct Value **Param, int NumArgs)
|
||||||
|
|
Loading…
Reference in a new issue