Compare commits

..

No commits in common. "2359cf27444b51cacf3e95255f203c9edd5f887b" and "01f5b872f2c7a566a2588344aa0e9168ba848e44" have entirely different histories.

3 changed files with 1 additions and 6 deletions

View File

@ -11,7 +11,7 @@ It's targetting x86 and inspirated by http://sos.enix.org/fr/PagePrincipale
To generate iso image
* `mtools xorriso (which is libisoburn on ArchLinux)`
* gcc for 32bits (e.g. gcc-multilib for ubuntu) >= 11
* gcc >= 6
* sfdisk (util-linux)
# Run it

View File

@ -164,10 +164,6 @@ int processSetName(struct process *proc, char *name)
return 0;
}
char *processGetName(struct process *proc){
return proc->name;
}
struct mmu_context *processGetMMUContext(struct process *proc)
{
return uAddrSpaceGetMMUContext(proc->addrSpace);

View File

@ -12,7 +12,6 @@ void processListPrint();
int processRef(struct process *proc);
int processUnref(struct process *proc);
int processSetName(struct process *proc, char *name);
char *processGetName(struct process *proc);
int processAddThread(struct process *proc, struct thread *th);
int processRemoveThread(struct thread *th);
struct mmu_context *processGetMMUContext(struct process *th);