commit 805b34c4d0e4f3aac1fe9391bab01e846307dd94
parent 38019a9e9cf022e0175443a0418291429a056b5b
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Mon, 28 Dec 2020 19:32:54 +0100
os9/hosted: Remove newstack()
This function was moved to generic code in proc.c
Change-Id: I8e2b06c628b22d35c2d82eefd419fb94b7be09c0
Diffstat:
2 files changed, 1 insertion(+), 6 deletions(-)
diff --git a/include/os9/os9.h b/include/os9/os9.h
@@ -224,6 +224,7 @@ extern int decref(Ref *);
extern int getntask(int n, Task **);
extern Task *gettask(int);
extern int mapseg(Map *);
+extern Map *newstack(Task *);
/* alloc.c */
extern void *alloc(size_t);
diff --git a/src/os9/hosted/mmu.c b/src/os9/hosted/mmu.c
@@ -11,9 +11,3 @@ initptable(Task *tp)
{
return NULL;
}
-
-Map *
-newstack(Task *tp)
-{
- return NULL;
-}