rwlock expects the struct thread to be aligned on 8 bytes, so make sure

thread0 is.
This commit is contained in:
Olivier Houchard 2006-02-06 16:03:10 +00:00
parent e497d0cdba
commit 2a3b10658d

View File

@ -90,7 +90,7 @@ void mi_startup(void); /* Should be elsewhere */
static struct session session0;
static struct pgrp pgrp0;
struct proc proc0;
struct thread thread0;
struct thread thread0 __aligned(8);
struct ksegrp ksegrp0;
struct vmspace vmspace0;
struct proc *initproc;