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:
zik.saleeba 2014-03-02 01:33:33 +00:00
parent f41a1c5f51
commit 4555e8456f

View file

@ -2,6 +2,7 @@
#include <stdio.h>
#include <unistd.h>
#include <limits.h>
#include <fcntl.h>
#include "../interpreter.h"
#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)
{
#ifndef F_FULLSYNC
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)