remove "done" folders, label "bs/droneenter, bs/dronelook, and bs/dronevanish files and functions"

This commit is contained in:
Banjo Kazooie
2023-01-21 20:13:03 -06:00
parent 0ecaa54b4a
commit c004632915
190 changed files with 645 additions and 644 deletions

View File

@@ -0,0 +1,48 @@
#include <ultra64.h>
#include "functions.h"
#include "variables.h"
extern OSThread *__osRunningThread;
extern OSThread *__osActiveQueue;
extern void __osDispatchThread(void);
void osDestroyThread(OSThread *t)
{
register u32 saveMask;
register OSThread *pred;
register OSThread *succ;
saveMask = __osDisableInt();
if (t == NULL)
{
t = __osRunningThread;
}
else
{
if (t->state != OS_STATE_STOPPED)
{
__osDequeueThread(t->queue, t);
}
}
if (__osActiveQueue == t)
{
__osActiveQueue = __osActiveQueue->tlnext;
}
else
{
pred = __osActiveQueue;
while (succ = pred->tlnext)
{
if (succ == t)
{
pred->tlnext = t->tlnext;
break;
}
pred = succ;
}
}
if (t == __osRunningThread)
{
__osDispatchThread();
}
__osRestoreInt(saveMask);
}