package uring

  1. Overview
  2. Docs

Module Statx.FlagsSource

include FLAGS
Sourcetype t = private int

A set of flags.

Sourceval empty : t
Sourceval of_int : int -> t
Sourceval (+) : t -> t -> t

a + b is the union of the sets.

Sourceval mem : t -> t -> bool

mem x flags is true iff x is a subset of flags.

Sourceval empty_path : t

empty_path signals that if the pathname is an empty string then operate on the file referred to by the fd (which can refer to any type of file). If fd is not specified then the call operates on the current working directory.

Sourceval no_automount : t

no_automount signals that statx should not automount the basename component of the path if it is an automount point. This can be used in tools that scan directories to prevent mass-automounting of a directory of automount points.

symlink_nofollow signals that if the path is a symbolic link, then return information about the link itself.

Sourceval statx_sync_as_stat : t

statx_sync_as_stat is the filesystem-specific behaviour in response to stat calls.

Sourceval statx_force_sync : t

statx_force_sync forces synchronisation with the server, if the filesystem is a network-backed one.

Sourceval statx_dont_sync : t

statx_dont_sync signals that locally cached timestamps are sufficient, if run on a network-backed filesystem.

OCaml

Innovation. Community. Security.