util.h 2.1 KB
Newer Older
1 2 3 4 5
#ifndef GIT_COMPAT_UTIL_H
#define GIT_COMPAT_UTIL_H

#define _ALL_SOURCE 1
#define _BSD_SOURCE 1
6 7
/* glibc 2.20 deprecates _BSD_SOURCE in favour of _DEFAULT_SOURCE */
#define _DEFAULT_SOURCE 1
8 9

#include <fcntl.h>
10
#include <stdbool.h>
11 12 13
#include <stddef.h>
#include <stdlib.h>
#include <stdarg.h>
B
Borislav Petkov 已提交
14
#include <linux/types.h>
15

16 17 18 19 20 21 22 23 24 25
#ifdef __GNUC__
#define NORETURN __attribute__((__noreturn__))
#else
#define NORETURN
#ifndef __attribute__
#define __attribute__(x)
#endif
#endif

/* General helper functions */
26 27 28 29
void usage(const char *err) NORETURN;
void die(const char *err, ...) NORETURN __attribute__((format (printf, 1, 2)));
int error(const char *err, ...) __attribute__((format (printf, 1, 2)));
void warning(const char *err, ...) __attribute__((format (printf, 1, 2)));
30

31
void set_warning_routine(void (*routine)(const char *err, va_list params));
32

33 34 35 36 37
static inline void *zalloc(size_t size)
{
	return calloc(1, size);
}

38 39
#define zfree(ptr) ({ free(*ptr); *ptr = NULL; })

40
struct dirent;
41 42
struct strlist;

43
int mkdir_p(char *path, mode_t mode);
44
int rm_rf(const char *path);
45 46
struct strlist *lsdir(const char *name, bool (*filter)(const char *, struct dirent *));
bool lsdir_no_dot_filter(const char *name, struct dirent *d);
47
int copyfile(const char *from, const char *to);
A
Adrian Hunter 已提交
48
int copyfile_mode(const char *from, const char *to, mode_t mode);
49
int copyfile_offset(int fromfd, loff_t from_ofs, int tofd, loff_t to_ofs, u64 size);
50

51
ssize_t readn(int fd, void *buf, size_t n);
J
Jiri Olsa 已提交
52
ssize_t writen(int fd, void *buf, size_t n);
53

54
size_t hex_width(u64 v);
55
int hex2u64(const char *ptr, u64 *val);
56

57
extern unsigned int page_size;
58
extern int cacheline_size;
59

60
bool find_process(const char *name);
61

62 63
int fetch_kernel_version(unsigned int *puint,
			 char *str, size_t str_sz);
64 65 66 67 68
#define KVER_VERSION(x)		(((x) >> 16) & 0xff)
#define KVER_PATCHLEVEL(x)	(((x) >> 8) & 0xff)
#define KVER_SUBLEVEL(x)	((x) & 0xff)
#define KVER_FMT	"%d.%d.%d"
#define KVER_PARAM(x)	KVER_VERSION(x), KVER_PATCHLEVEL(x), KVER_SUBLEVEL(x)
69

70 71
const char *perf_tip(const char *dirpath);

72 73
#ifndef HAVE_SCHED_GETCPU_SUPPORT
int sched_getcpu(void);
74 75
#endif

76
#endif /* GIT_COMPAT_UTIL_H */