util.h (a64489c56c307bf0955f0489158c5ecf6aa10fe2) util.h (5dfa210e407d0fedf746958bff206995bd46570d)
1#ifndef GIT_COMPAT_UTIL_H
2#define GIT_COMPAT_UTIL_H
3
4#ifndef FLEX_ARRAY
5/*
6 * See if our compiler is known to support flexible array members.
7 */
8#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)

--- 273 unchanged lines hidden (view full) ---

282 path2, path2[0] ? "/" : "", path3);
283}
284
285struct dso;
286struct symbol;
287
288extern bool srcline_full_filename;
289char *get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
1#ifndef GIT_COMPAT_UTIL_H
2#define GIT_COMPAT_UTIL_H
3
4#ifndef FLEX_ARRAY
5/*
6 * See if our compiler is known to support flexible array members.
7 */
8#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)

--- 273 unchanged lines hidden (view full) ---

282 path2, path2[0] ? "/" : "", path3);
283}
284
285struct dso;
286struct symbol;
287
288extern bool srcline_full_filename;
289char *get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
290 bool show_sym);
290 bool show_sym, bool show_addr);
291char *__get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
291char *__get_srcline(struct dso *dso, u64 addr, struct symbol *sym,
292 bool show_sym, bool unwind_inlines);
292 bool show_sym, bool show_addr, bool unwind_inlines);
293void free_srcline(char *srcline);
294
295int perf_event_paranoid(void);
296
297void mem_bswap_64(void *src, int byte_size);
298void mem_bswap_32(void *src, int byte_size);
299
300const char *get_filename_for_perf_kvm(void);

--- 83 unchanged lines hidden ---
293void free_srcline(char *srcline);
294
295int perf_event_paranoid(void);
296
297void mem_bswap_64(void *src, int byte_size);
298void mem_bswap_32(void *src, int byte_size);
299
300const char *get_filename_for_perf_kvm(void);

--- 83 unchanged lines hidden ---