mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
9 lines
221 B
C
9 lines
221 B
C
// Copyright 2018 plutoo
|
|
#pragma once
|
|
#include "kernel/utimer.h"
|
|
#include "wait.h"
|
|
|
|
void _utimerRecalculate(UTimer* t, u64 old_tick);
|
|
u64 _utimerGetNextTick(UTimer* t);
|
|
void _utimerAddListener(UTimer* t, WaiterNode* w);
|