Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e677869e authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "NNAPI: Add OptionalTimeoutDuration to 1.3/types.t" am: 456d54c9 am: 484a48b7

Change-Id: I15a04ae187fd72305f16c014e4b7c976033632bd
parents fd3e2a15 484a48b7
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -552,6 +552,19 @@ safe_union OptionalTimePoint {
    uint64_t nanoseconds;
};

/**
 * Optional timeout duration measured in nanoseconds.
 */
safe_union OptionalTimeoutDuration {
    /** No time point provided. */
    Monostate none;

    /**
     * Timeout duration measured in nanoseconds.
     */
    uint64_t nanoseconds;
};

/**
 * Return status of a function.
 */