pollution: path pollution: mode int chmod(const char *path, mode_t mode); pollution: fildes pollution: mode int fchmod(int fildes, mode_t mode); pollution: dirfd pollution: path pollution: mode pollution: flags int fchmodat(int dirfd, const char *path, mode_t mode, int flags); pollution: fildes pollution: buf int fstat(int fildes, struct stat *buf); pollution: fildes pollution: path pollution: buf pollution: flags int fstatat(int fildes, const char *path, struct stat *buf, int flags); pollution: fildes pollution: buf int __fxstat(int _ver, int fildes, struct stat *buf); pollution: fd pollution: times int futimens(int fd, const struct timespec *times); pollution: path pollution: buf int lstat(const char *path, struct stat *buf); pollution: dirfd pollution: path pollution: mode int mkdirat(int dirfd, const char *path, mode_t mode); pollution: path pollution: mode int mkdir(const char *path, mode_t mode); pollution: dirfd pollution: path pollution: mode int mkfifoat(int dirfd, const char *path, mode_t mode); pollution: path pollution: mode int mkfifo(const char *path, mode_t mode); pollution: path pollution: mode pollution: dev pollution: mknod int mknod(const char *path, mode_t mode, dev_t dev); pollution: dirfd pollution: path pollution: mode pollution: dev pollution: mknodat int mknodat(int dirfd, const char *path, mode_t mode, dev_t dev); pollution: file pollution: buf int stat(const char *file, struct stat *buf); pollution: mask mode_t umask(mode_t mask); pollution: fd pollution: path pollution: times pollution: flag int utimensat(int fd, const char *path, const struct timespec *times, int flag); pollution: path pollution: mode int creat(const char *path, mode_t mode); pollution: fildes pollution: cmd int fcntl(int fildes, int cmd, ...); pollution: path pollution: oflag int open(const char *path, int oflag, ...); pollution: fd pollution: path pollution: oflag int openat(int fd, const char *path, int oflag, ...); pollution: fd pollution: offset pollution: len int posix_fallocate(int fd, off_t offset, off_t len); pollution: addr pollution: len pollution: flags pollution: madvise int madvise(void *addr, size_t len, int flags); pollution: addr pollution: len int mlock(const void *addr, size_t len); pollution: flags int mlockall(int flags); pollution: addr pollution: len pollution: prot pollution: flags pollution: fildes pollution: off void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off); pollution: addr pollution: len pollution: prot int mprotect(void *addr, size_t len, int prot); pollution: old_address pollution: old_size pollution: new_size pollution: flags pollution: mremap void *mremap(void *old_address, size_t old_size, size_t new_size, int flags, ...); pollution: addr pollution: len pollution: flags int msync(void *addr, size_t len, int flags); pollution: addr pollution: len int munlock(const void *addr, size_t len); pollution: addr pollution: len int munmap(void *addr, size_t len); pollution: name pollution: oflag pollution: mode int shm_open(const char *name, int oflag, mode_t mode); pollution: name int shm_unlink(const char *name); pollution: MADV_NORMAL #define MADV_NORMAL 0 pollution: MADV_DODUMP #define MADV_DODUMP 6 pollution: MADV_DONTDUMP #define MADV_DONTDUMP 5 pollution: MADV_WILLNEED #define MADV_WILLNEED 3 pollution: MADV_DONTNEED #define MADV_DONTNEED 4 pollution: POSIX_MADV_WONTNEED #define POSIX_MADV_WONTNEED 4 pollution: MADV_SEQUENTIAL #define MADV_SEQUENTIAL 2 pollution: MREMAP_MAYMOVE #define MREMAP_MAYMOVE 1 pollution: MADV_RANDOM #define MADV_RANDOM 1 pollution: AT_EMPTY_PATH #define AT_EMPTY_PATH 16384