mirror of
https://github.com/drasko/codezero.git
synced 2026-01-13 11:23:16 +01:00
68 lines
1.4 KiB
C
68 lines
1.4 KiB
C
/*
|
|
* Definitions for Codezero Containers
|
|
*
|
|
* Copyright (C) 2009 Bahadir Balban
|
|
*/
|
|
#ifndef __CONTAINER_H__
|
|
#define __CONTAINER_H__
|
|
|
|
#include <l4/generic/scheduler.h>
|
|
#include <l4/generic/space.h>
|
|
#include <l4/generic/capability.h>
|
|
#include <l4/lib/idpool.h>
|
|
#include <l4/api/mutex.h>
|
|
|
|
/* Container macro. No locks needed! */
|
|
#define container (current->container)
|
|
|
|
struct container {
|
|
/* Unique container id */
|
|
l4id_t cid;
|
|
|
|
/* List of address spaces */
|
|
struct address_space_list space_list;
|
|
|
|
/* List of threads */
|
|
struct ktcb_list ktcb_list;
|
|
|
|
/* ID pools for threads and spaces */
|
|
struct id_pool *thread_id_pool;
|
|
struct id_pool *space_id_pool;
|
|
|
|
/* Scheduling structs */
|
|
struct scheduler scheduler;
|
|
|
|
/* Mutex list for all userspace mutexes */
|
|
struct mutex_queue_head mutex_queue_head;
|
|
|
|
/*
|
|
* Capabilities that apply to this container
|
|
*
|
|
* Threads, address spaces, mutex queues, cpu share ...
|
|
* Pagers possess these capabilities.
|
|
*/
|
|
struct capability caps[5] /* threadpool, spacepool, mutexpool, cpupool, mempool */
|
|
};
|
|
|
|
/* The array of containers present on the system */
|
|
extern struct container container[];
|
|
|
|
|
|
struct memdesc {
|
|
unsigned long start;
|
|
unsigned long end;
|
|
unsigned int flags;
|
|
};
|
|
|
|
struct cinfo {
|
|
char cname[32];
|
|
unsigned long pager_lma;
|
|
unsigned long pager_vma;
|
|
unsigned long pager_size;
|
|
|
|
unsigned long total_memdesc;
|
|
struct memdesc memdesc[];
|
|
};
|
|
|
|
#endif /* __CONTAINER_H__ */
|