Contributed by: akira on 2010年 7月8日(木) 09:20 JST
Last modified on
close 関数はmanで調べるとというヘッダファイルらしい。 ちなみに、memsetはこれらは何れもPOSIXとのこと、ANSIではない。 ちなみにANSIでは、fcntl.hにまとめられていたような気がする。 Macでは、fcntl.hにcloseはない。 unistdはUNIX Standerdとのこと
Visual stadioでunistd.hを利用する場合の例らしい
//<unistd.h>をWindowsで使用するための定義
#ifndef _UNISTD_H_
#define _UNISTD_H_
#ifdef _WIN32
#pragma once
#include <io.h>
/*
access
chmod
chsize
close
creat
dup
dup2
eof
filelength
isatty
locking
lseek
mktemp
open
read
setmode
sopen
tell
umask
unlink
write
*/
#include <direct.h>
/*
chdir
getcwd
mkdir
rmdir
*/
#include <process.h>
/*
cwait
execl
execle
execlp
execlpe
execv
execve
execvp
execvpe
spawnl
spawnle
spawnlp
spawnlpe
spawnv
spawnve
spawnvp
spawnvpe
*/
#pragma comment( lib, "ws2_32" )
#include <winsock2.h>
/*
gethostname
*/
#include <process.h>
/*
_getpid
*/
#include <time.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef int pid_t; /* process id type */
#ifndef _SSIZE_T_DEFINED
typedef int ssize_t;
#define _SSIZE_T_DEFINED
#endif
#ifndef vsnprintf
#define vsnprintf _vsnprintf
#endif
#ifndef snprintf
#define snprintf _snprintf
#endif
#ifndef getpid
#define getpid() _getpid()
extern pid_t __cdecl _getpid(void);
#endif
#define nice(incr) (SetPriorityClass(GetCurrentProcess(),incr))//TODO
#define sleep(seconds) (Sleep(seconds*1000))
#define usleep(useconds) (Sleep(useconds))
#define stime(tp) UNISTD_stime(tp)
__forceinline int UNISTD_stime(const time_t *tp ){
FILETIME ft;
SYSTEMTIME st;
LONGLONG ll = Int32x32To64(*tp, 10000000) + 116444736000000000;
ft.dwLowDateTime = (DWORD) ll;
ft.dwHighDateTime = (DWORD)ll >>32;
FileTimeToSystemTime(&ft,&st);
return SetSystemTime(&st);
}
//<sys/stat.h>
#define fstat64(fildes, stat) (_fstati64(fildes, stat))
#define stat64(path, buffer) (_stati64(path,buffer))
#ifdef __cplusplus
}
#endif
#endif /* _WIN32 */
#endif /* _UNISTD_H_ */