summaryrefslogtreecommitdiff
path: root/lib/ultralib/src/io/epilinkhandle.c
blob: 2e9b1fac716c20f3bbbe8fed3926dd337422d136 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "PRinternal/piint.h"

s32 osEPiLinkHandle(OSPiHandle* EPiHandle) {
    u32 saveMask = __osDisableInt();

    EPiHandle->next = __osPiTable;
    __osPiTable = EPiHandle;

    __osRestoreInt(saveMask);
    return 0;
}