]> git.proxmox.com Git - libgit2.git/blob - src/unix/posix.h
Merge pull request #3574 from chescock/buffer-sideband-pack-data
[libgit2.git] / src / unix / posix.h
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7 #ifndef INCLUDE_posix__unix_h__
8 #define INCLUDE_posix__unix_h__
9
10 #include <stdio.h>
11 #include <dirent.h>
12 #include <sys/param.h>
13 #include <sys/time.h>
14 #include <sys/stat.h>
15
16 typedef int GIT_SOCKET;
17 #define INVALID_SOCKET -1
18
19 #define p_lseek(f,n,w) lseek(f, n, w)
20 #define p_fstat(f,b) fstat(f, b)
21 #define p_lstat(p,b) lstat(p,b)
22 #define p_stat(p,b) stat(p, b)
23
24 #if defined(GIT_USE_STAT_MTIMESPEC)
25 # define st_atime_nsec st_atimespec.tv_nsec
26 # define st_mtime_nsec st_mtimespec.tv_nsec
27 # define st_ctime_nsec st_ctimespec.tv_nsec
28 #elif defined(GIT_USE_STAT_MTIM)
29 # define st_atime_nsec st_atim.tv_nsec
30 # define st_mtime_nsec st_mtim.tv_nsec
31 # define st_ctime_nsec st_ctim.tv_nsec
32 #elif !defined(GIT_USE_STAT_MTIME_NSEC) && defined(GIT_USE_NEC)
33 # error GIT_USE_NSEC defined but unknown struct stat nanosecond type
34 #endif
35
36 #define p_utimes(f, t) utimes(f, t)
37
38 #define p_readlink(a, b, c) readlink(a, b, c)
39 #define p_symlink(o,n) symlink(o, n)
40 #define p_link(o,n) link(o, n)
41 #define p_unlink(p) unlink(p)
42 #define p_mkdir(p,m) mkdir(p, m)
43 #define p_fsync(fd) fsync(fd)
44 extern char *p_realpath(const char *, char *);
45
46 #define p_recv(s,b,l,f) recv(s,b,l,f)
47 #define p_send(s,b,l,f) send(s,b,l,f)
48 #define p_inet_pton(a, b, c) inet_pton(a, b, c)
49
50 #define p_strcasecmp(s1, s2) strcasecmp(s1, s2)
51 #define p_strncasecmp(s1, s2, c) strncasecmp(s1, s2, c)
52 #define p_vsnprintf(b, c, f, a) vsnprintf(b, c, f, a)
53 #define p_snprintf(b, c, f, ...) snprintf(b, c, f, __VA_ARGS__)
54 #define p_mkstemp(p) mkstemp(p)
55 #define p_chdir(p) chdir(p)
56 #define p_chmod(p,m) chmod(p, m)
57 #define p_rmdir(p) rmdir(p)
58 #define p_access(p,m) access(p,m)
59 #define p_ftruncate(fd, sz) ftruncate(fd, sz)
60
61 /* see win32/posix.h for explanation about why this exists */
62 #define p_lstat_posixly(p,b) lstat(p,b)
63
64 #define p_localtime_r(c, r) localtime_r(c, r)
65 #define p_gmtime_r(c, r) gmtime_r(c, r)
66
67 #define p_timeval timeval
68
69 #ifdef HAVE_FUTIMENS
70 GIT_INLINE(int) p_futimes(int f, const struct p_timeval t[2])
71 {
72 struct timespec s[2];
73 s[0].tv_sec = t[0].tv_sec;
74 s[0].tv_nsec = t[0].tv_usec * 1000;
75 s[1].tv_sec = t[1].tv_sec;
76 s[1].tv_nsec = t[1].tv_usec * 1000;
77 return futimens(f, s);
78 }
79 #else
80 # define p_futimes futimes
81 #endif
82
83 #endif