1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Use NULL rather than 0 in a couple of places.

This commit is contained in:
John Baldwin 2005-04-12 23:12:46 +00:00
parent 181897f05f
commit ae3676c4e2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144969

View File

@ -328,7 +328,7 @@ cpu_thread_clean(struct thread *td)
struct pcb *pcb;
pcb = td->td_pcb;
if (pcb->pcb_ext != 0) {
if (pcb->pcb_ext != NULL) {
/* XXXKSE XXXSMP not SMP SAFE.. what locks do we have? */
/* if (pcb->pcb_ext->ext_refcount-- == 1) ?? */
/*
@ -337,7 +337,7 @@ cpu_thread_clean(struct thread *td)
*/
kmem_free(kernel_map, (vm_offset_t)pcb->pcb_ext,
ctob(IOPAGES + 1));
pcb->pcb_ext = 0;
pcb->pcb_ext = NULL;
}
}