2018-10-16 09:01:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "types.h"
|
2018-10-17 08:55:43 +00:00
|
|
|
#include "InlineLinkedList.h"
|
|
|
|
#include <AK/String.h>
|
2018-10-16 09:01:38 +00:00
|
|
|
#include "TSS.h"
|
2018-10-17 08:55:43 +00:00
|
|
|
#include <AK/Vector.h>
|
2018-10-16 09:01:38 +00:00
|
|
|
#include "i386.h"
|
2018-10-26 12:24:11 +00:00
|
|
|
#include <VirtualFileSystem/VirtualFileSystem.h>
|
2018-11-05 17:16:00 +00:00
|
|
|
#include <VirtualFileSystem/UnixTypes.h>
|
2018-10-30 12:59:29 +00:00
|
|
|
#include "TTY.h"
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-11-07 10:37:54 +00:00
|
|
|
class FileDescriptor;
|
2018-11-01 22:04:34 +00:00
|
|
|
class PageDirectory;
|
2018-11-01 12:21:02 +00:00
|
|
|
class Region;
|
2018-10-18 11:05:00 +00:00
|
|
|
class Zone;
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-11-07 21:15:02 +00:00
|
|
|
#define COOL_GLOBALS
|
|
|
|
#ifdef COOL_GLOBALS
|
|
|
|
struct CoolGlobals {
|
|
|
|
pid_t current_pid;
|
|
|
|
};
|
|
|
|
extern CoolGlobals* g_cool_globals;
|
|
|
|
#endif
|
|
|
|
|
2018-11-06 09:46:40 +00:00
|
|
|
struct SignalActionData {
|
|
|
|
LinearAddress handler_or_sigaction;
|
|
|
|
dword mask { 0 };
|
|
|
|
int flags { 0 };
|
|
|
|
LinearAddress restorer;
|
|
|
|
};
|
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
class Process : public InlineLinkedListNode<Process> {
|
|
|
|
friend class InlineLinkedListNode<Process>;
|
2018-10-16 09:01:38 +00:00
|
|
|
public:
|
2018-11-07 20:38:18 +00:00
|
|
|
static Process* create_kernel_process(void (*entry)(), String&& name);
|
2018-11-06 12:33:06 +00:00
|
|
|
static Process* create_user_process(const String& path, uid_t, gid_t, pid_t ppid, int& error, Vector<String>&& arguments = Vector<String>(), Vector<String>&& environment = Vector<String>(), TTY* = nullptr);
|
2018-11-01 12:15:46 +00:00
|
|
|
~Process();
|
2018-10-23 10:44:46 +00:00
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
static Vector<Process*> allProcesses();
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
enum State {
|
|
|
|
Invalid = 0,
|
2018-11-07 17:30:59 +00:00
|
|
|
Runnable,
|
|
|
|
Running,
|
2018-11-07 22:13:38 +00:00
|
|
|
ExecPhase1,
|
|
|
|
ExecPhase2,
|
2018-11-07 17:30:59 +00:00
|
|
|
Dead,
|
|
|
|
Forgiven,
|
|
|
|
BeingInspected,
|
|
|
|
BlockedSleep,
|
|
|
|
BlockedWait,
|
|
|
|
BlockedRead,
|
2018-10-16 09:01:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum RingLevel {
|
|
|
|
Ring0 = 0,
|
|
|
|
Ring3 = 3,
|
|
|
|
};
|
|
|
|
|
2018-10-17 22:12:52 +00:00
|
|
|
bool isRing0() const { return m_ring == Ring0; }
|
2018-10-25 09:15:17 +00:00
|
|
|
bool isRing3() const { return m_ring == Ring3; }
|
2018-10-17 22:12:52 +00:00
|
|
|
|
2018-11-07 20:19:47 +00:00
|
|
|
bool is_blocked() const
|
|
|
|
{
|
|
|
|
return m_state == BlockedSleep || m_state == BlockedWait || m_state == BlockedRead;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool in_kernel() const { return (m_tss.cs & 0x03) == 0; }
|
|
|
|
|
2018-11-07 20:38:18 +00:00
|
|
|
static Process* from_pid(pid_t);
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
const String& name() const { return m_name; }
|
|
|
|
pid_t pid() const { return m_pid; }
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t sid() const { return m_sid; }
|
|
|
|
pid_t pgid() const { return m_pgid; }
|
2018-10-16 09:01:38 +00:00
|
|
|
DWORD ticks() const { return m_ticks; }
|
2018-10-16 09:06:35 +00:00
|
|
|
WORD selector() const { return m_farPtr.selector; }
|
2018-10-16 09:01:38 +00:00
|
|
|
TSS32& tss() { return m_tss; }
|
|
|
|
State state() const { return m_state; }
|
2018-10-23 10:44:46 +00:00
|
|
|
uid_t uid() const { return m_uid; }
|
2018-11-05 14:04:19 +00:00
|
|
|
gid_t gid() const { return m_gid; }
|
|
|
|
uid_t euid() const { return m_euid; }
|
|
|
|
gid_t egid() const { return m_egid; }
|
2018-11-06 12:33:06 +00:00
|
|
|
pid_t ppid() const { return m_ppid; }
|
2018-10-25 08:15:13 +00:00
|
|
|
|
2018-10-16 09:06:35 +00:00
|
|
|
const FarPtr& farPtr() const { return m_farPtr; }
|
|
|
|
|
2018-11-07 10:37:54 +00:00
|
|
|
FileDescriptor* file_descriptor(int fd);
|
|
|
|
const FileDescriptor* file_descriptor(int fd) const;
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-10-23 13:41:55 +00:00
|
|
|
static void doHouseKeeping();
|
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
void block(Process::State);
|
2018-10-16 09:01:38 +00:00
|
|
|
void unblock();
|
|
|
|
|
|
|
|
void setWakeupTime(DWORD t) { m_wakeupTime = t; }
|
|
|
|
DWORD wakeupTime() const { return m_wakeupTime; }
|
|
|
|
|
2018-11-07 20:38:18 +00:00
|
|
|
static void for_each(Function<bool(Process&)>);
|
|
|
|
static void for_each_in_pgrp(pid_t, Function<bool(Process&)>);
|
|
|
|
static void for_each_in_state(State, Function<bool(Process&)>);
|
|
|
|
static void for_each_not_in_state(State, Function<bool(Process&)>);
|
2018-11-02 13:06:48 +00:00
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
bool tick() { ++m_ticks; return --m_ticksLeft; }
|
2018-11-07 21:15:02 +00:00
|
|
|
void set_ticks_left(dword t) { m_ticksLeft = t; }
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-10-16 09:06:35 +00:00
|
|
|
void setSelector(WORD s) { m_farPtr.selector = s; }
|
2018-11-01 13:21:02 +00:00
|
|
|
void set_state(State s) { m_state = s; }
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t sys$setsid();
|
|
|
|
pid_t sys$getsid(pid_t);
|
|
|
|
int sys$setpgid(pid_t pid, pid_t pgid);
|
|
|
|
pid_t sys$getpgrp();
|
|
|
|
pid_t sys$getpgid(pid_t);
|
2018-11-02 12:14:25 +00:00
|
|
|
pid_t sys$tcgetpgrp(int fd);
|
|
|
|
int sys$tcsetpgrp(int fd, pid_t pgid);
|
2018-10-16 09:01:38 +00:00
|
|
|
uid_t sys$getuid();
|
2018-10-22 11:55:11 +00:00
|
|
|
gid_t sys$getgid();
|
2018-11-05 14:04:19 +00:00
|
|
|
uid_t sys$geteuid();
|
|
|
|
gid_t sys$getegid();
|
2018-10-22 11:55:11 +00:00
|
|
|
pid_t sys$getpid();
|
2018-11-06 12:33:06 +00:00
|
|
|
pid_t sys$getppid();
|
2018-11-06 12:40:23 +00:00
|
|
|
mode_t sys$umask(mode_t);
|
2018-10-28 13:11:51 +00:00
|
|
|
int sys$open(const char* path, int options);
|
2018-10-16 09:01:38 +00:00
|
|
|
int sys$close(int fd);
|
2018-10-30 14:33:37 +00:00
|
|
|
ssize_t sys$read(int fd, void* outbuf, size_t nread);
|
|
|
|
ssize_t sys$write(int fd, const void*, size_t);
|
2018-10-26 22:29:31 +00:00
|
|
|
int sys$lstat(const char*, Unix::stat*);
|
2018-10-31 09:14:56 +00:00
|
|
|
int sys$stat(const char*, Unix::stat*);
|
2018-10-31 16:50:43 +00:00
|
|
|
int sys$lseek(int fd, off_t, int whence);
|
2018-10-16 09:01:38 +00:00
|
|
|
int sys$kill(pid_t pid, int sig);
|
|
|
|
int sys$geterror() { return m_error; }
|
2018-11-07 21:15:02 +00:00
|
|
|
void sys$exit(int status) NORETURN;
|
|
|
|
void sys$sigreturn() NORETURN;
|
2018-11-03 09:49:13 +00:00
|
|
|
pid_t sys$spawn(const char* path, const char** args, const char** envp);
|
2018-10-26 23:24:22 +00:00
|
|
|
pid_t sys$waitpid(pid_t, int* wstatus, int options);
|
2018-10-24 07:48:24 +00:00
|
|
|
void* sys$mmap(void*, size_t size);
|
|
|
|
int sys$munmap(void*, size_t size);
|
2018-10-28 08:57:22 +00:00
|
|
|
int sys$set_mmap_name(void*, size_t, const char*);
|
2018-10-24 10:43:52 +00:00
|
|
|
int sys$get_dir_entries(int fd, void*, size_t);
|
2018-10-24 12:28:22 +00:00
|
|
|
int sys$getcwd(char*, size_t);
|
2018-10-26 12:24:11 +00:00
|
|
|
int sys$chdir(const char*);
|
2018-10-25 11:53:49 +00:00
|
|
|
int sys$sleep(unsigned seconds);
|
2018-10-25 15:29:49 +00:00
|
|
|
int sys$gettimeofday(timeval*);
|
2018-10-26 07:54:29 +00:00
|
|
|
int sys$gethostname(char* name, size_t length);
|
2018-10-26 09:16:56 +00:00
|
|
|
int sys$get_arguments(int* argc, char*** argv);
|
2018-10-31 16:50:43 +00:00
|
|
|
int sys$get_environment(char*** environ);
|
2018-10-26 12:56:21 +00:00
|
|
|
int sys$uname(utsname*);
|
2018-10-28 13:11:51 +00:00
|
|
|
int sys$readlink(const char*, char*, size_t);
|
2018-10-30 21:03:02 +00:00
|
|
|
int sys$ttyname_r(int fd, char*, size_t);
|
2018-11-02 19:41:58 +00:00
|
|
|
pid_t sys$fork(RegisterDump&);
|
2018-11-03 00:49:40 +00:00
|
|
|
int sys$execve(const char* filename, const char** argv, const char** envp);
|
2018-11-05 17:16:00 +00:00
|
|
|
Unix::sighandler_t sys$signal(int signum, Unix::sighandler_t);
|
|
|
|
int sys$isatty(int fd);
|
2018-11-05 18:01:22 +00:00
|
|
|
int sys$getdtablesize();
|
|
|
|
int sys$dup(int oldfd);
|
|
|
|
int sys$dup2(int oldfd, int newfd);
|
2018-11-06 09:46:40 +00:00
|
|
|
int sys$sigaction(int signum, const Unix::sigaction* act, Unix::sigaction* old_act);
|
2018-11-07 00:38:51 +00:00
|
|
|
int sys$getgroups(int size, gid_t*);
|
|
|
|
int sys$setgroups(size_t, const gid_t*);
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
static void initialize();
|
|
|
|
|
2018-11-07 21:15:02 +00:00
|
|
|
void crash() NORETURN;
|
2018-10-17 22:26:30 +00:00
|
|
|
|
2018-10-30 14:33:37 +00:00
|
|
|
const TTY* tty() const { return m_tty; }
|
|
|
|
|
2018-10-26 15:42:12 +00:00
|
|
|
size_t regionCount() const { return m_regions.size(); }
|
2018-10-27 12:56:52 +00:00
|
|
|
const Vector<RetainPtr<Region>>& regions() const { return m_regions; }
|
2018-10-18 12:53:00 +00:00
|
|
|
void dumpRegions();
|
|
|
|
|
2018-11-07 21:15:02 +00:00
|
|
|
void did_schedule() { ++m_timesScheduled; }
|
2018-10-22 09:15:16 +00:00
|
|
|
dword timesScheduled() const { return m_timesScheduled; }
|
|
|
|
|
2018-10-23 22:20:34 +00:00
|
|
|
pid_t waitee() const { return m_waitee; }
|
|
|
|
|
2018-10-26 22:14:24 +00:00
|
|
|
dword framePtr() const { return m_tss.ebp; }
|
2018-10-26 20:32:35 +00:00
|
|
|
dword stackPtr() const { return m_tss.esp; }
|
|
|
|
dword stackTop() const { return m_tss.ss == 0x10 ? m_stackTop0 : m_stackTop3; }
|
|
|
|
|
2018-10-26 22:14:24 +00:00
|
|
|
bool isValidAddressForKernel(LinearAddress) const;
|
2018-11-01 11:45:51 +00:00
|
|
|
bool validate_user_read(LinearAddress) const;
|
|
|
|
bool validate_user_write(LinearAddress) const;
|
2018-10-26 22:14:24 +00:00
|
|
|
|
2018-10-28 11:20:25 +00:00
|
|
|
InodeIdentifier cwdInode() const { return m_cwd ? m_cwd->inode : InodeIdentifier(); }
|
2018-10-28 13:11:51 +00:00
|
|
|
InodeIdentifier executableInode() const { return m_executable ? m_executable->inode : InodeIdentifier(); }
|
2018-10-28 11:20:25 +00:00
|
|
|
|
2018-11-01 12:39:28 +00:00
|
|
|
size_t number_of_open_file_descriptors() const;
|
2018-11-01 13:00:28 +00:00
|
|
|
size_t max_open_file_descriptors() const { return m_max_open_file_descriptors; }
|
2018-11-01 12:39:28 +00:00
|
|
|
|
2018-11-07 17:30:59 +00:00
|
|
|
void send_signal(byte signal, Process* sender);
|
|
|
|
void dispatch_one_pending_signal();
|
|
|
|
void dispatch_signal(byte signal);
|
|
|
|
bool has_unmasked_pending_signals() const;
|
|
|
|
void terminate_due_to_signal(byte signal);
|
2018-11-02 13:06:48 +00:00
|
|
|
|
2018-11-02 19:41:58 +00:00
|
|
|
Process* fork(RegisterDump&);
|
2018-11-03 09:20:23 +00:00
|
|
|
int exec(const String& path, Vector<String>&& arguments, Vector<String>&& environment);
|
2018-11-02 19:41:58 +00:00
|
|
|
|
2018-11-07 00:38:51 +00:00
|
|
|
bool is_root() const { return m_euid == 0; }
|
|
|
|
|
2018-10-16 09:01:38 +00:00
|
|
|
private:
|
2018-10-18 11:05:00 +00:00
|
|
|
friend class MemoryManager;
|
2018-11-07 21:15:02 +00:00
|
|
|
friend class Scheduler;
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2018-11-06 12:33:06 +00:00
|
|
|
Process(String&& name, uid_t, gid_t, pid_t ppid, RingLevel, RetainPtr<VirtualFileSystem::Node>&& cwd = nullptr, RetainPtr<VirtualFileSystem::Node>&& executable = nullptr, TTY* = nullptr, Process* fork_parent = nullptr);
|
2018-10-25 09:15:17 +00:00
|
|
|
|
2018-11-06 09:46:40 +00:00
|
|
|
void push_value_on_stack(dword);
|
2018-10-16 09:01:38 +00:00
|
|
|
|
2018-11-01 22:04:34 +00:00
|
|
|
PageDirectory* m_page_directory { nullptr };
|
2018-11-01 08:01:51 +00:00
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
Process* m_prev { nullptr };
|
|
|
|
Process* m_next { nullptr };
|
2018-10-16 09:01:38 +00:00
|
|
|
|
|
|
|
String m_name;
|
|
|
|
void (*m_entry)() { nullptr };
|
|
|
|
pid_t m_pid { 0 };
|
|
|
|
uid_t m_uid { 0 };
|
2018-10-22 11:55:11 +00:00
|
|
|
gid_t m_gid { 0 };
|
2018-11-05 14:04:19 +00:00
|
|
|
uid_t m_euid { 0 };
|
|
|
|
gid_t m_egid { 0 };
|
2018-11-02 11:56:51 +00:00
|
|
|
pid_t m_sid { 0 };
|
|
|
|
pid_t m_pgid { 0 };
|
2018-10-16 09:01:38 +00:00
|
|
|
DWORD m_ticks { 0 };
|
|
|
|
DWORD m_ticksLeft { 0 };
|
2018-10-26 20:32:35 +00:00
|
|
|
DWORD m_stackTop0 { 0 };
|
|
|
|
DWORD m_stackTop3 { 0 };
|
2018-10-16 09:06:35 +00:00
|
|
|
FarPtr m_farPtr;
|
2018-10-16 09:01:38 +00:00
|
|
|
State m_state { Invalid };
|
|
|
|
DWORD m_wakeupTime { 0 };
|
|
|
|
TSS32 m_tss;
|
2018-11-07 20:19:47 +00:00
|
|
|
TSS32 m_tss_to_resume_kernel;
|
2018-11-07 10:37:54 +00:00
|
|
|
Vector<RetainPtr<FileDescriptor>> m_file_descriptors;
|
2018-10-16 09:01:38 +00:00
|
|
|
RingLevel m_ring { Ring0 };
|
|
|
|
int m_error { 0 };
|
2018-10-18 12:53:00 +00:00
|
|
|
void* m_kernelStack { nullptr };
|
2018-10-22 09:15:16 +00:00
|
|
|
dword m_timesScheduled { 0 };
|
2018-10-23 22:20:34 +00:00
|
|
|
pid_t m_waitee { -1 };
|
2018-11-07 17:30:59 +00:00
|
|
|
int m_waitee_status { 0 };
|
2018-10-25 11:07:59 +00:00
|
|
|
int m_fdBlockedOnRead { -1 };
|
2018-11-01 12:39:28 +00:00
|
|
|
size_t m_max_open_file_descriptors { 16 };
|
2018-11-06 09:46:40 +00:00
|
|
|
SignalActionData m_signal_action_data[32];
|
2018-11-07 17:30:59 +00:00
|
|
|
dword m_pending_signals { 0 };
|
|
|
|
dword m_signal_mask { 0 };
|
|
|
|
|
|
|
|
byte m_termination_status { 0 };
|
|
|
|
byte m_termination_signal { 0 };
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2018-10-26 12:24:11 +00:00
|
|
|
RetainPtr<VirtualFileSystem::Node> m_cwd;
|
2018-10-28 13:11:51 +00:00
|
|
|
RetainPtr<VirtualFileSystem::Node> m_executable;
|
2018-10-24 12:28:22 +00:00
|
|
|
|
2018-10-30 12:59:29 +00:00
|
|
|
TTY* m_tty { nullptr };
|
|
|
|
|
2018-11-03 10:28:23 +00:00
|
|
|
Region* allocate_region(LinearAddress, size_t, String&& name, bool is_readable = true, bool is_writable = true);
|
|
|
|
bool deallocate_region(Region& region);
|
2018-10-24 07:48:24 +00:00
|
|
|
|
|
|
|
Region* regionFromRange(LinearAddress, size_t);
|
2018-10-18 12:53:00 +00:00
|
|
|
|
2018-10-27 12:56:52 +00:00
|
|
|
Vector<RetainPtr<Region>> m_regions;
|
2018-10-18 11:05:00 +00:00
|
|
|
|
2018-10-18 12:53:00 +00:00
|
|
|
// FIXME: Implement some kind of ASLR?
|
|
|
|
LinearAddress m_nextRegion;
|
2018-10-24 12:28:22 +00:00
|
|
|
|
2018-11-07 20:19:47 +00:00
|
|
|
LinearAddress m_return_to_ring3_from_signal_trampoline;
|
|
|
|
LinearAddress m_return_to_ring0_from_signal_trampoline;
|
2018-11-06 09:46:40 +00:00
|
|
|
|
2018-11-06 12:33:06 +00:00
|
|
|
pid_t m_ppid { 0 };
|
2018-11-06 12:40:23 +00:00
|
|
|
mode_t m_umask { 022 };
|
2018-10-26 09:16:56 +00:00
|
|
|
|
2018-11-07 20:19:47 +00:00
|
|
|
bool m_was_interrupted_while_blocked { false };
|
|
|
|
|
2018-11-01 00:04:02 +00:00
|
|
|
static void notify_waiters(pid_t waitee, int exit_status, int signal);
|
2018-10-31 00:06:57 +00:00
|
|
|
|
2018-10-26 09:16:56 +00:00
|
|
|
Vector<String> m_arguments;
|
2018-10-31 16:50:43 +00:00
|
|
|
Vector<String> m_initialEnvironment;
|
2018-11-07 00:38:51 +00:00
|
|
|
HashTable<gid_t> m_gids;
|
2018-11-07 20:19:47 +00:00
|
|
|
|
|
|
|
Region* m_stack_region { nullptr };
|
|
|
|
Region* m_signal_stack_user_region { nullptr };
|
|
|
|
Region* m_signal_stack_kernel_region { nullptr };
|
2018-10-16 09:01:38 +00:00
|
|
|
};
|
|
|
|
|
2018-11-01 13:21:02 +00:00
|
|
|
class ProcessInspectionScope {
|
|
|
|
public:
|
|
|
|
ProcessInspectionScope(Process& process)
|
|
|
|
: m_process(process)
|
|
|
|
, m_original_state(process.state())
|
|
|
|
{
|
|
|
|
m_process.set_state(Process::BeingInspected);
|
|
|
|
}
|
|
|
|
|
|
|
|
~ProcessInspectionScope()
|
|
|
|
{
|
|
|
|
m_process.set_state(m_original_state);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Process& m_process;
|
|
|
|
Process::State m_original_state { Process::Invalid };
|
|
|
|
};
|
|
|
|
|
2018-11-05 12:48:07 +00:00
|
|
|
static inline const char* toString(Process::State state)
|
|
|
|
{
|
|
|
|
switch (state) {
|
|
|
|
case Process::Invalid: return "Invalid";
|
|
|
|
case Process::Runnable: return "Runnable";
|
|
|
|
case Process::Running: return "Running";
|
2018-11-07 17:30:59 +00:00
|
|
|
case Process::Dead: return "Dead";
|
2018-11-07 22:13:38 +00:00
|
|
|
case Process::ExecPhase1: return "ExecPhase1";
|
|
|
|
case Process::ExecPhase2: return "ExecPhase2";
|
2018-11-07 17:30:59 +00:00
|
|
|
case Process::Forgiven: return "Forgiven";
|
2018-11-05 12:48:07 +00:00
|
|
|
case Process::BlockedSleep: return "Sleep";
|
|
|
|
case Process::BlockedWait: return "Wait";
|
|
|
|
case Process::BlockedRead: return "Read";
|
|
|
|
case Process::BeingInspected: return "Inspect";
|
|
|
|
}
|
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-11-01 12:15:46 +00:00
|
|
|
extern void block(Process::State);
|
2018-10-16 09:01:38 +00:00
|
|
|
extern void sleep(DWORD ticks);
|
|
|
|
|
2018-11-07 21:15:02 +00:00
|
|
|
extern InlineLinkedList<Process>* g_processes;
|
|
|
|
extern InlineLinkedList<Process>* g_dead_processes;
|