Epok Engine

EPOK RUNTIME

epok::sequence_clock_start

Function · 1 overload

Function

Performs `sequence clock start` as part of the sequence clock module.

Belongs to
epok
Header
sequence_clock.hpp
Overloads
1

Declaration

Declaration
inline bool sequence_clock_start()

Performs `sequence clock start` as part of the sequence clock module.

This overload takes no parameters.

Returns: bool. Check the value before continuing when it represents success, availability or a resource handle.

Example

C++ example
#include "sequence_clock.hpp"

auto result = epok::sequence_clock_start();

Why use it

The boolean result makes success, availability or state explicit without exceptions.

Trade-offs and warnings

Check the return value; `false` is part of normal control flow for many PSX resource operations.

Declared in runtime/sequence_clock.hpp:43

Related members