Make this compile on 64 bit platforms

This commit is contained in:
Peter Wemm 2002-07-07 22:27:40 +00:00
parent 1ada226485
commit b799f5a475
2 changed files with 8 additions and 8 deletions

View File

@ -90,7 +90,7 @@ thread_ctor(void *mem, int size, void *arg)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
bzero(&td->td_startzero,
@ -110,7 +110,7 @@ thread_dtor(void *mem, int size, void *arg)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
@ -151,7 +151,7 @@ thread_init(void *mem, int size)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
pmap_new_thread(td);
@ -169,7 +169,7 @@ thread_fini(void *mem, int size)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
pmap_dispose_thread(td);

View File

@ -90,7 +90,7 @@ thread_ctor(void *mem, int size, void *arg)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
bzero(&td->td_startzero,
@ -110,7 +110,7 @@ thread_dtor(void *mem, int size, void *arg)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
@ -151,7 +151,7 @@ thread_init(void *mem, int size)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
pmap_new_thread(td);
@ -169,7 +169,7 @@ thread_fini(void *mem, int size)
struct thread *td;
KASSERT((size == sizeof(struct thread)),
("size mismatch: %d != %d\n", size, sizeof(struct thread)));
("size mismatch: %d != %d\n", size, (int)sizeof(struct thread)));
td = (struct thread *)mem;
pmap_dispose_thread(td);