Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 19 May 2002 18:21:45 -0700 (PDT)
From:      Jonathan Mini <mini@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 11576 for review
Message-ID:  <200205200121.g4K1Lje65269@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=11576

Change 11576 by mini@mini_stylus on 2002/05/19 18:21:16

	Whitespace and comment fixup.

Affected files ...

... //depot/projects/kse/sys/i386/i386/trap.c#40 edit

Differences ...

==== //depot/projects/kse/sys/i386/i386/trap.c#40 (text+ko) ====

@@ -949,22 +949,21 @@
 	if (td->td_ucred != p->p_ucred) 
 		cred_update_thread(td);
 	if (p->p_flag & P_KSES) {
-		/* 
+		/*
 		 * If we are doing a syscall in a KSE environment,
-		 * Then note where our mailbox is.
-		 * There is always the possibility we could do this
-		 * lazily, in sleep() but for now I'll do it every time.
+		 * note where our mailbox is. There is always the
+		 * possibility that we could do this lazily (in sleep()),
+		 * but for now do it every time.
 		 */
 		error = copyin((caddr_t)td->td_kse->ke_mailbox +
 		    offsetof(struct kse_mailbox, current_thread),
 		    &td->td_mailbox, sizeof(void *));
 		if (error || td->td_mailbox == NULL) {
-			td->td_mailbox = NULL; /* single thread it.. */
+			td->td_mailbox = NULL;	/* single thread it.. */
 			td->td_flags &= ~TDF_UNBOUND;
 		} else {
 			td->td_flags |= TDF_UNBOUND;
 		}
-		
 	}
 	params = (caddr_t)frame.tf_esp + sizeof(int);
 	code = frame.tf_eax;

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200205200121.g4K1Lje65269>