mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
- combine *-macos-* → any-macos-any - SDK headers as a single tree support targeting multiple arch/versions - bump to SDK 14.0 (release candidate)
18 lines
320 B
C
Vendored
18 lines
320 B
C
Vendored
#ifndef __OS_CLOCK__
|
|
#define __OS_CLOCK__
|
|
|
|
#include <os/base.h>
|
|
#include <stdint.h>
|
|
|
|
/*
|
|
* @typedef os_clockid_t
|
|
*
|
|
* @abstract
|
|
* Describes the kind of clock that the workgroup timestamp parameters are
|
|
* specified in
|
|
*/
|
|
OS_ENUM(os_clockid, uint32_t,
|
|
OS_CLOCK_MACH_ABSOLUTE_TIME = 32,
|
|
);
|
|
|
|
#endif /* __OS_CLOCK__ */
|