1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

Change two XXX's to two notes: the fact that SOCK_LOCK(so) ==

SOCKBUF_LOCK(&so->so_rcv) is encoded, which is worth noting, but not a
bug.
This commit is contained in:
Robert Watson 2006-08-02 16:23:52 +00:00
parent 3a6fc39d32
commit 92716fe04e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160927

View File

@ -140,7 +140,7 @@ soisdisconnecting(so)
{
/*
* XXXRW: This code assumes that SOCK_LOCK(so) and
* Note: This code assumes that SOCK_LOCK(so) and
* SOCKBUF_LOCK(&so->so_rcv) are the same.
*/
SOCKBUF_LOCK(&so->so_rcv);
@ -160,7 +160,7 @@ soisdisconnected(so)
{
/*
* XXXRW: This code assumes that SOCK_LOCK(so) and
* Note: This code assumes that SOCK_LOCK(so) and
* SOCKBUF_LOCK(&so->so_rcv) are the same.
*/
SOCKBUF_LOCK(&so->so_rcv);