9os

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

commit bad3e003ee66b0292d1c37246def9b615374eae6
parent f3d795bb8ed3e7a193774435206f2cd150231596
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Tue, 22 Nov 2022 22:29:00 +0100

os9: Unify all the pool definitions

The pool definitions were basically a pointer plus a mutex
so it is a good idea to join all the definitions in only one.

Diffstat:
Msrc/os9/alloc.c | 41++++++++---------------------------------
1 file changed, 8 insertions(+), 33 deletions(-)

diff --git a/src/os9/alloc.c b/src/os9/alloc.c @@ -11,43 +11,18 @@ union bucket { union bucket *next; }; -struct bufpool { - union bucket *list; - mutex_t m; -}; - -struct pagepool { - Page *list; - mutex_t m; -}; - -struct nspool { - Nspace *list; - mutex_t m; -}; - -struct fdspool { - Fdset *list; - mutex_t m; -}; - -struct mappool { - Map *list; - mutex_t m; -}; - -struct chanpool { - Chan *list; +struct pool { + void *list; mutex_t m; }; static union bucket *heap; -static struct bufpool bufpool; -static struct pagepool pagepool; -static struct nspool nspool; -static struct mappool mappool; -static struct fdspool fdspool; -static struct chanpool chanpool; +static struct pool bufpool; +static struct pool pagepool; +static struct pool nspool; +static struct pool mappool; +static struct pool fdspool; +static struct pool chanpool; void freeb(void *bp)