From owner-freebsd-current@FreeBSD.ORG Thu May 1 19:31:24 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B77B137B401; Thu, 1 May 2003 19:31:24 -0700 (PDT) Received: from h14n2fls34o809.telia.com (h190n1fls34o809.telia.com [213.67.96.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31CE343F3F; Thu, 1 May 2003 19:31:23 -0700 (PDT) (envelope-from pawel.worach@telia.com) Received: from corona (corona.sajd.net [192.168.1.20])h422VKg02505; Fri, 2 May 2003 04:31:21 +0200 (MEST) From: "Pawel Worach" To: Date: Fri, 2 May 2003 04:31:20 +0200 Message-ID: <000001c31052$eb07b760$1401a8c0@corona> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: current@FreeBSD.org Subject: buildworld broken in sched_ule X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 May 2003 02:31:25 -0000 /usr/src/sys/kern/sched_ule.c: In function `sched_clock': /usr/src/sys/kern/sched_ule.c:904: `TD_IDLETD' undeclared (first use in = this function) /usr/src/sys/kern/sched_ule.c:904: (Each undeclared identifier is = reported only once /usr/src/sys/kern/sched_ule.c:904: for each function it appears in.) guess this should be: - if (td->td_flags & TD_IDLETD) + if (td->td_flags & TDF_IDLETD)