9os

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

commit bfed1813cb8fb136c4f79e2781c73b51375035f0
parent 511696e3b06f464f65c0951f64ecd1e598ca864e
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed,  6 Nov 2024 21:43:18 +0100

os9: Add the ret field to the task struct

This field is used in different places to store the syscall
return value.

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

diff --git a/include/os9/os9.h b/include/os9/os9.h @@ -235,6 +235,7 @@ struct task { void *entry; int errno; + int ret; int prio; int baseprio;