9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 606be53e2ba7ce6707f91db1d79feba0f8131e2b
parent 85e1ee50ed144bbc6c2e5c70004842e346f3dcc9
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Fri, 11 Nov 2022 16:38:57 +0100

hosted: Remove unused ctx.c

Diffstat:
Dsrc/os9/hosted/ctx.c | 12------------
1 file changed, 0 insertions(+), 12 deletions(-)

diff --git a/src/os9/hosted/ctx.c b/src/os9/hosted/ctx.c @@ -1,12 +0,0 @@ -#include <os9/os9.h> - -int -ictx(Task *tp, void *fn) -{ - if (!newstack(tp)) - return -1; - tp->ctx.stack = (void *) tp->stack.va; - tp->ctx.entry = fn; - - return 0; -}