From 52c2e613a91a7c999daf963cce6255487968cdf0 Mon Sep 17 00:00:00 2001 From: yamt Date: Sat, 26 Apr 2008 08:08:27 +0000 Subject: [PATCH] idle_loop: unsigned -> uint32_t to be consistent with the rest of the code. no functional change. --- sys/kern/kern_idle.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/kern/kern_idle.c b/sys/kern/kern_idle.c index 0aecf7ce2366..8b12bfd826be 100644 --- a/sys/kern/kern_idle.c +++ b/sys/kern/kern_idle.c @@ -1,4 +1,4 @@ -/* $NetBSD: kern_idle.c,v 1.14 2008/04/24 13:56:30 ad Exp $ */ +/* $NetBSD: kern_idle.c,v 1.15 2008/04/26 08:08:27 yamt Exp $ */ /*- * Copyright (c)2002, 2006, 2007 YAMAMOTO Takashi, @@ -28,7 +28,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: kern_idle.c,v 1.14 2008/04/24 13:56:30 ad Exp $"); +__KERNEL_RCSID(0, "$NetBSD: kern_idle.c,v 1.15 2008/04/26 08:08:27 yamt Exp $"); #include #include @@ -53,7 +53,7 @@ idle_loop(void *dummy) { struct cpu_info *ci = curcpu(); struct lwp *l = curlwp; - unsigned mask = (1 << cpu_index(ci)); + uint32_t mask = 1 << cpu_index(ci); bool set = false; int s;