Added comments and help commands to user apps

This commit is contained in:
iDunnoDev
2023-01-13 17:37:43 +00:00
committed by iDunnoDev
parent c23d669858
commit f74cebc12d
11 changed files with 197 additions and 55 deletions

4
proc.h
View File

@ -48,8 +48,8 @@ struct proc {
struct file *ofile[NOFILE]; // Open files
struct inode *cwd; // Current directory
char name[16]; // Process name (debugging)
struct vconsole* consoleptr;
char title[20];
struct vconsole* consoleptr; // Pointer to the processes assigned console
char title[20]; // the title for the process
};
// Process memory is laid out contiguously, low addresses first: