Code

624b32d1f404229efcbc0e229703e874e6275fdf
[git.git] / compat / mingw.h
1 #include <winsock2.h>
3 /*
4  * things that are not available in header files
5  */
7 typedef int pid_t;
8 #define hstrerror strerror
10 #define S_IFLNK    0120000 /* Symbolic link */
11 #define S_ISLNK(x) (((x) & S_IFMT) == S_IFLNK)
12 #define S_ISSOCK(x) 0
13 #define S_IRGRP 0
14 #define S_IWGRP 0
15 #define S_IXGRP 0
16 #define S_ISGID 0
17 #define S_IROTH 0
18 #define S_IXOTH 0
20 #define WIFEXITED(x) ((unsigned)(x) < 259)      /* STILL_ACTIVE */
21 #define WEXITSTATUS(x) ((x) & 0xff)
22 #define WIFSIGNALED(x) ((unsigned)(x) > 259)
24 #define SIGKILL 0
25 #define SIGCHLD 0
26 #define SIGPIPE 0
27 #define SIGHUP 0
28 #define SIGQUIT 0
29 #define SIGALRM 100
31 #define F_GETFD 1
32 #define F_SETFD 2
33 #define FD_CLOEXEC 0x1
35 struct passwd {
36         char *pw_name;
37         char *pw_gecos;
38         char *pw_dir;
39 };
41 struct pollfd {
42         int fd;           /* file descriptor */
43         short events;     /* requested events */
44         short revents;    /* returned events */
45 };
46 #define POLLIN 1
47 #define POLLHUP 2
49 typedef void (__cdecl *sig_handler_t)(int);
50 struct sigaction {
51         sig_handler_t sa_handler;
52         unsigned sa_flags;
53 };
54 #define sigemptyset(x) (void)0
55 #define SA_RESTART 0
57 struct itimerval {
58         struct timeval it_value, it_interval;
59 };
60 #define ITIMER_REAL 0
62 /*
63  * trivial stubs
64  */
66 static inline int readlink(const char *path, char *buf, size_t bufsiz)
67 { errno = ENOSYS; return -1; }
68 static inline int symlink(const char *oldpath, const char *newpath)
69 { errno = ENOSYS; return -1; }
70 static inline int link(const char *oldpath, const char *newpath)
71 { errno = ENOSYS; return -1; }
72 static inline int fchmod(int fildes, mode_t mode)
73 { errno = ENOSYS; return -1; }
74 static inline int fork(void)
75 { errno = ENOSYS; return -1; }
76 static inline unsigned int alarm(unsigned int seconds)
77 { return 0; }
78 static inline int fsync(int fd)
79 { return 0; }
80 static inline int getppid(void)
81 { return 1; }
82 static inline void sync(void)
83 {}
84 static inline int getuid()
85 { return 1; }
86 static inline struct passwd *getpwnam(const char *name)
87 { return NULL; }
88 static inline int fcntl(int fd, int cmd, long arg)
89 {
90         if (cmd == F_GETFD || cmd == F_SETFD)
91                 return 0;
92         errno = EINVAL;
93         return -1;
94 }
96 /*
97  * simple adaptors
98  */
100 static inline int mingw_mkdir(const char *path, int mode)
102         return mkdir(path);
104 #define mkdir mingw_mkdir
106 static inline int mingw_unlink(const char *pathname)
108         /* read-only files cannot be removed */
109         chmod(pathname, 0666);
110         return unlink(pathname);
112 #define unlink mingw_unlink
114 static inline int waitpid(pid_t pid, unsigned *status, unsigned options)
116         if (options == 0)
117                 return _cwait(status, pid, 0);
118         errno = EINVAL;
119         return -1;
122 /*
123  * implementations of missing functions
124  */
126 int pipe(int filedes[2]);
127 unsigned int sleep (unsigned int seconds);
128 int mkstemp(char *template);
129 int gettimeofday(struct timeval *tv, void *tz);
130 int poll(struct pollfd *ufds, unsigned int nfds, int timeout);
131 struct tm *gmtime_r(const time_t *timep, struct tm *result);
132 struct tm *localtime_r(const time_t *timep, struct tm *result);
133 int getpagesize(void);  /* defined in MinGW's libgcc.a */
134 struct passwd *getpwuid(int uid);
135 int setitimer(int type, struct itimerval *in, struct itimerval *out);
136 int sigaction(int sig, struct sigaction *in, struct sigaction *out);
138 /*
139  * replacements of existing functions
140  */
142 int mingw_open (const char *filename, int oflags, ...);
143 #define open mingw_open
145 char *mingw_getcwd(char *pointer, int len);
146 #define getcwd mingw_getcwd
148 struct hostent *mingw_gethostbyname(const char *host);
149 #define gethostbyname mingw_gethostbyname
151 int mingw_socket(int domain, int type, int protocol);
152 #define socket mingw_socket
154 int mingw_connect(int sockfd, struct sockaddr *sa, size_t sz);
155 #define connect mingw_connect
157 int mingw_rename(const char*, const char*);
158 #define rename mingw_rename
160 /* Use mingw_lstat() instead of lstat()/stat() and
161  * mingw_fstat() instead of fstat() on Windows.
162  * struct stat is redefined because it lacks the st_blocks member.
163  */
164 struct mingw_stat {
165         unsigned st_mode;
166         time_t st_mtime, st_atime, st_ctime;
167         unsigned st_dev, st_ino, st_uid, st_gid;
168         size_t st_size;
169         size_t st_blocks;
170 };
171 int mingw_lstat(const char *file_name, struct mingw_stat *buf);
172 int mingw_fstat(int fd, struct mingw_stat *buf);
173 #define fstat mingw_fstat
174 #define lstat mingw_lstat
175 #define stat mingw_stat
176 static inline int mingw_stat(const char *file_name, struct mingw_stat *buf)
177 { return mingw_lstat(file_name, buf); }
179 int mingw_utime(const char *file_name, const struct utimbuf *times);
180 #define utime mingw_utime
182 pid_t mingw_spawnvpe(const char *cmd, const char **argv, char **env);
183 void mingw_execvp(const char *cmd, char *const *argv);
184 #define execvp mingw_execvp
186 sig_handler_t mingw_signal(int sig, sig_handler_t handler);
187 #define signal mingw_signal
189 /*
190  * git specific compatibility
191  */
193 #define has_dos_drive_prefix(path) (isalpha(*(path)) && (path)[1] == ':')
194 #define is_dir_sep(c) ((c) == '/' || (c) == '\\')
195 #define PATH_SEP ';'
196 #define PRIuMAX "I64u"
198 /*
199  * helpers
200  */
202 char **copy_environ(void);
203 void free_environ(char **env);
204 char **env_setenv(char **env, const char *name);