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

1
exec.c
View File

@ -130,6 +130,7 @@ int exec(char *path, char **argv) {
}
safestrcpy(curproc->name, last, sizeof(curproc->name));
// If the process is tied to a console update the title to the new process name
if (curproc->consoleptr != 0)
{
setconsoleproctitle(curproc->consoleptr, curproc->name);