MCPcopy Create free account
hub / github.com/coreutils/coreutils / fdadvise

Function fdadvise

gl/lib/fadvise.c:24–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22#include "ignore-value.h"
23
24void
25fdadvise (int fd, off_t offset, off_t len, fadvice_t advice)
26{
27#if HAVE_POSIX_FADVISE
28 ignore_value (posix_fadvise (fd, offset, len, advice));
29#endif
30}
31
32void
33fadvise (FILE *fp, fadvice_t advice)

Callers 7

fadviseFunction · 0.85
mainFunction · 0.85
cat_fileFunction · 0.85
mainFunction · 0.85
wcFunction · 0.85
copy_file_dataFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by 1

mainFunction · 0.68