Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 17 May 2001 12:47:09 -0700 (PDT)
From:      Alfred Perlstein <alfred@FreeBSD.org>
To:        cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/kern sys_pipe.c
Message-ID:  <200105171947.f4HJl9s15124@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
alfred      2001/05/17 12:47:09 PDT

  Modified files:
    sys/kern             sys_pipe.c 
  Log:
  Cleanup
  
  Remove comment about setting error for reads on EOF, read returns 0 on
  EOF so the code should be ok.
  
  Remove non-effective priority boost, PRIO+1 doesn't do anything
  (according to McKusick), if a real priority boost is needed it should
  have been +4.
  
  Style fixes:
  .) return foo -> return (foo)
  .) FLAG1|FlAG2 -> FLAG1 | FlAG2
  .) wrap long lines
  .) unwrap short lines
  .) for(i=0;i=foo;i++) -> for (i = 0; i=foo; i++)
  .) remove braces for some conditionals with a single statement
  .) fix continuation lines.
  
  md5 couldn't verify the binary because some code had to
  be shuffled around to address the style issues.
  
  Revision  Changes    Path
  1.76      +51 -55    src/sys/kern/sys_pipe.c


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




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