1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef GIT_COMPAT_UTIL_H
3 #define GIT_COMPAT_UTIL_H
6 /* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
7 #define _DEFAULT_SOURCE 1
14 #include <linux/compiler.h>
15 #include <sys/types.h>
17 /* General helper functions */
18 void usage(const char *err
) __noreturn
;
19 void die(const char *err
, ...) __noreturn
__printf(1, 2);
21 static inline void *zalloc(size_t size
)
23 return calloc(1, size
);
26 #define zfree(ptr) ({ free(*ptr); *ptr = NULL; })
32 int mkdir_p(char *path
, mode_t mode
);
33 int rm_rf(const char *path
);
34 int rm_rf_perf_data(const char *path
);
35 struct strlist
*lsdir(const char *name
, bool (*filter
)(const char *, struct dirent
*));
36 bool lsdir_no_dot_filter(const char *name
, struct dirent
*d
);
37 int copyfile(const char *from
, const char *to
);
38 int copyfile_mode(const char *from
, const char *to
, mode_t mode
);
39 int copyfile_ns(const char *from
, const char *to
, struct nsinfo
*nsi
);
40 int copyfile_offset(int ifd
, loff_t off_in
, int ofd
, loff_t off_out
, u64 size
);
42 ssize_t
readn(int fd
, void *buf
, size_t n
);
43 ssize_t
writen(int fd
, const void *buf
, size_t n
);
45 size_t hex_width(u64 v
);
46 int hex2u64(const char *ptr
, u64
*val
);
48 extern unsigned int page_size
;
49 int __pure
cacheline_size(void);
51 int sysctl__max_stack(void);
53 int fetch_kernel_version(unsigned int *puint
,
54 char *str
, size_t str_sz
);
55 #define KVER_VERSION(x) (((x) >> 16) & 0xff)
56 #define KVER_PATCHLEVEL(x) (((x) >> 8) & 0xff)
57 #define KVER_SUBLEVEL(x) ((x) & 0xff)
58 #define KVER_FMT "%d.%d.%d"
59 #define KVER_PARAM(x) KVER_VERSION(x), KVER_PATCHLEVEL(x), KVER_SUBLEVEL(x)
61 const char *perf_tip(const char *dirpath
);
63 #ifndef HAVE_GET_CURRENT_DIR_NAME
64 char *get_current_dir_name(void);
67 #ifndef HAVE_SCHED_GETCPU_SUPPORT
68 int sched_getcpu(void);
71 #ifndef HAVE_SETNS_SUPPORT
72 int setns(int fd
, int nstype
);
75 extern bool perf_singlethreaded
;
77 void perf_set_singlethreaded(void);
78 void perf_set_multithreaded(void);
80 char *perf_exe(char *buf
, int len
);
84 #define O_CLOEXEC 0x400000
85 #elif defined(__alpha__) || defined(__hppa__)
86 #define O_CLOEXEC 010000000
88 #define O_CLOEXEC 02000000
92 #endif /* GIT_COMPAT_UTIL_H */