mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
8 lines
268 B
C
8 lines
268 B
C
// Copyright 2018 plutoo
|
|
#pragma once
|
|
#include "kernel/utimer.h"
|
|
|
|
void _utimerRecalculate(UsermodeTimer* t, u64 old_tick);
|
|
u64 _utimerGetNextTick(UsermodeTimer* t);
|
|
void _utimerAddListener(UsermodeTimer* t, WaiterNode* w, size_t idx, size_t* idx_out, Handle thread);
|