mirror of
https://github.com/fincs/FeOS.git
synced 2025-06-20 03:55:33 -04:00

- Replace DSConsoleMode/DSDirectMode/DSModeShim with DSRequestHardware - Remove AutoUpdate mechanism (stuff should be done manually inside direct mode) - Fix keyboard when returning from "direct mode" (graphics loading requires access to BIOS decompression funcs) - The documentation was updated to reflect this change
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
#pragma once
|
|
#include "feos.h"
|
|
#include "loader.h"
|
|
|
|
#define PRIORITY_HIGH 0x7FFFFFFF
|
|
#define PRIORITY_NORMAL 0
|
|
|
|
enum { THREAD_EXIT = BIT(0), THREAD_IRQWAIT = BIT(1), THREAD_EXECBITS = 3, THREAD_HIGHPRIO = BIT(2), THREAD_DETACHED = BIT(3) };
|
|
|
|
typedef struct tag_threadSt
|
|
{
|
|
jmp_buf ctx;
|
|
word_t* stack;
|
|
struct tag_threadSt* prev;
|
|
struct tag_threadSt* next;
|
|
execstat_t execStat;
|
|
word_t flags;
|
|
union { int rc; word_t irqMask; };
|
|
void* tls[IDMGR_MAXIDS];
|
|
} threadSt;
|
|
|
|
typedef threadSt* thread_t;
|
|
|
|
void ThrInit();
|
|
|
|
thread_t ThrCreate(word_t stackSize, threadEP_t entryPoint, void* param);
|
|
void ThrYield();
|
|
thread_t ThrGetSelf();
|
|
void ThrExit(int rc);
|
|
bool ThrIsActive(thread_t hThread);
|
|
void ThrFree(thread_t hThread);
|
|
void ThrSetPriority(thread_t hThread, int prio);
|
|
int ThrGetExitCode(thread_t hThread);
|
|
int ThrJoin();
|
|
void ThrDetach(thread_t hThread);
|
|
int ThrRunInContext(thread_t hThread, threadEP_t func, void* param);
|
|
|
|
thread_t PsCreateFromArgv(int argc, const char* argv[]);
|
|
thread_t PsCreateFromCmdLine(const char* command);
|
|
|
|
int ThrTlsAlloc();
|
|
void ThrTlsFree(int id);
|
|
void* ThrTlsGetValue(int id);
|
|
void ThrTlsSetValue(int id, void* value);
|