Home
last modified time | relevance | path

Searched refs:head (Results 1 – 2 of 2) sorted by relevance

/xv6-public/
H A Dbio.c35 struct buf head; member
47 bcache.head.prev = &bcache.head; in binit()
48 bcache.head.next = &bcache.head; in binit()
50 b->next = bcache.head.next; in binit()
51 b->prev = &bcache.head; in binit()
53 bcache.head.next->prev = b; in binit()
54 bcache.head.next = b; in binit()
69 for(b = bcache.head.next; b != &bcache.head; b = b->next){ in bget()
81 for(b = bcache.head.prev; b != &bcache.head; b = b->prev){ in bget()
135 b->prev = &bcache.head; in brelse()
[all …]
H A DMakefile83 LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null | head -n 1)