Add parens to SMBPRI, fixing bug in tsleep() call that OR's SMBPRI with

something else.
This commit is contained in:
Matthew Dillon 1999-01-27 19:58:53 +00:00
parent a56d629240
commit d7bcbf6358
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43294

View file

@ -23,14 +23,14 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: smbconf.h,v 1.1.1.1 1998/09/03 20:52:54 nsouch Exp $
* $Id: smbconf.h,v 1.2 1998/10/31 11:39:54 nsouch Exp $
*/
#ifndef __SMBONF_H
#define __SMBONF_H
#include <sys/queue.h>
#define SMBPRI PZERO+8 /* XXX sleep/wakeup queue priority */
#define SMBPRI (PZERO+8) /* XXX sleep/wakeup queue priority */
#define n(flags) (~(flags) & (flags))