minix/servers/vm/yielded.h

28 lines
430 B
C
Raw Normal View History

#ifndef _YIELDED_H
#define _YIELDED_H 1
#include <minix/type.h>
2010-10-15 11:10:14 +02:00
typedef struct block_id {
u64_t id;
endpoint_t owner;
2010-10-15 11:10:14 +02:00
} block_id_t;
typedef struct yielded {
/* the owner-given id and owner together
* uniquely identify a yielded block.
*/
block_id_t id;
phys_bytes addr, len;
/* LRU fields */
struct yielded *younger, *older;
/* AVL fields */
struct yielded *less, *greater;
int factor;
} yielded_t;
#endif