Skip to documentation
SLOP

tiny.machine.FaultPoint

Reference tiny.machine FaultPoint

Defined in tiny.machine.

The named place where a fault can be injected, a fault point.

API (5)

Fields and members

Public fields and members.

No direct callersNo direct callstiny.machineFaultPoint
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/machine/src/fault/types.zig:41

zig
/// The named place where a fault can be injected, a fault point. A caller builds/// one of these to name the place a decision will be taken. The basis digest names/// the authenticated state the point came out of. The subject digest identifies/// what the fault acts on, a packet or a node for example. The id commits every/// field, so two points agree only when their state, kind, and target all agree.pub const Point = struct {    id: os.abi.Digest,    dialect: Dialect,    basis: os.abi.Digest,    kind: Kind,    subject: os.abi.Digest,};

Source: lib/machine/src/root.zig:90

zig
pub const FaultPoint = fault.Point;

Also reachable as

fault.Point.

Audit

Definitions1
Public names2
Members5
Version26.7.0
Revisiondaab053ee433