From: John Hodge Date: Sat, 7 Jul 2012 15:30:32 +0000 (+0800) Subject: DiskTool - Fiddling towards compiling X-Git-Tag: rel0.15~611^2~41^2~30 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=3c8d22936a7f2e3664b760a588317985404ee93c;p=tpg%2Facess2.git DiskTool - Fiddling towards compiling --- diff --git a/Tools/DiskTool/src/threads.c b/Tools/DiskTool/src/threads.c index b5c2edf4..79ec4c65 100644 --- a/Tools/DiskTool/src/threads.c +++ b/Tools/DiskTool/src/threads.c @@ -2,8 +2,19 @@ * */ #include +#include // === CODE === +tThread *Proc_GetCurThread(void) +{ + return NULL; +} + +void Threads_PostEvent(tThread *Thread, Uint32 Events) +{ + +} + Uint32 Threads_WaitEvents(Uint32 Events) { Log_KernelPanic("Threads", "Can't use _WaitEvents in DiskTool"); diff --git a/Tools/DiskTool/src/time.c b/Tools/DiskTool/src/time.c new file mode 100644 index 00000000..e69de29b diff --git a/Tools/DiskTool/src/vfs_handles.c b/Tools/DiskTool/src/vfs_handles.c index 53c932f1..42fa659b 100644 --- a/Tools/DiskTool/src/vfs_handles.c +++ b/Tools/DiskTool/src/vfs_handles.c @@ -4,6 +4,11 @@ #include // === CODE === +int VFS_AllocHandle(int bKernel) +{ + return 0; +} + tVFS_Handle *VFS_GetHandle(int ID) { return NULL;