9os

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

commit f3e2c11c83bb2a74a6af12552731fed3a83c5d49
parent 237dade319fdee4a8675109948a577aebfdcc627
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Tue, 22 Nov 2022 17:25:17 +0100

os9: Move bufto and buffrom to globals

Diffstat:
Minclude/os9/os9.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/os9/os9.h b/include/os9/os9.h @@ -319,7 +319,6 @@ extern void ictx(Task *, void *); extern int dupctx(Task *); extern char *getconf(char *); extern void idle(void); -extern char bufto[], buffrom[]; /* dev functions */ extern void idev(void); @@ -338,6 +337,7 @@ extern void delfds(Fdset *); extern Chan *console; extern Mach mach; extern char buffertab[NR_BUFFERS][PAGESIZE]; +extern char bufto[], buffrom[]; /* per cpu globals */ extern Task *proc;