[misc] Various, meaningless edits

This commit is contained in:
Kevin Lange 2011-12-12 02:17:14 -06:00
parent 16989b65b0
commit 61bdd8f11d
3 changed files with 11 additions and 3 deletions

View File

@ -179,6 +179,14 @@ process_t * process_wait(process_t * process, pid_t pid, int * status, int optio
return NULL;
}
/*
* Wake up a sleeping process
*/
int process_wake(process_t * process, process_t * caller) {
return 0;
}
void set_process_environment(process_t * proc, page_directory_t * directory) {
assert(proc);
assert(directory);

View File

@ -32,7 +32,7 @@ uint32_t * bochs_vid_memory = (uint32_t *)0xE0000000;
static short csr_x = 0;
static short csr_y = 0;
static uint8_t * term_buffer;
static uint8_t * term_buffer = NULL;
static uint8_t current_fg = 7;
static uint8_t current_bg = 0;
static uint16_t current_scroll = 0;

View File

@ -62,7 +62,7 @@ typedef struct process {
char * name; /* Process Name */
char * description; /* Process description */
user_t user; /* Effective user */
group_t group; /* Effective group */
group_t group; /* Process scheduling group */
thread_t thread; /* Associated task information */
tree_node_t * tree_entry; /* Process Tree Entry */
image_t image; /* Binary image information */
@ -71,7 +71,7 @@ typedef struct process {
fd_table_t fds; /* File descriptor table */
status_t status; /* Process status */
sig_table_t signals; /* Signal table */
uint8_t finished;
uint8_t finished; /* Status indicator */
} process_t;
void initialize_process_tree();