From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18551 invoked by alias); 4 Feb 2009 17:18:00 -0000 Received: (qmail 18541 invoked by uid 22791); 4 Feb 2009 17:17:59 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,J_CHICKENPOX_93 X-Spam-Check-By: sourceware.org Received: from hagrid.ecoscentric.com (HELO mail.ecoscentric.com) (212.13.207.197) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 04 Feb 2009 17:17:54 +0000 Received: from localhost (hagrid.ecoscentric.com [127.0.0.1]) by mail.ecoscentric.com (Postfix) with ESMTP id 4C8B760B801D for ; Wed, 4 Feb 2009 17:17:52 +0000 (GMT) Received: from mail.ecoscentric.com ([127.0.0.1]) by localhost (hagrid.ecoscentric.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 0clOLZz9idoO; Wed, 4 Feb 2009 17:17:51 +0000 (GMT) Received: (from bartv@localhost) by hermione.bartv.net (8.14.3/8.14.3/Submit) id n14HHoqg026172; Wed, 4 Feb 2009 17:17:50 GMT Date: Wed, 04 Feb 2009 17:18:00 -0000 Message-Id: <200902041717.n14HHoqg026172@hermione.bartv.net> From: Bart Veer To: ecos-patches@sourceware.org Subject: update generic wallclock package Mailing-List: contact ecos-patches-help@ecos.sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: ecos-patches-owner@ecos.sourceware.org X-SW-Source: 2009-02/txt/msg00028.txt.bz2 This switches the generic wallclock code, and by implication nearly all walclock drivers since they initialize via the init_hw_seconds() member function, to use CYG_INIT_DEV_WALLCLOCK. Bart 2009-02-04 Bart Veer * src/wallclock.cxx: switch to CYG_INIT_DEV_WALLCLOCK init priority. Index: src/wallclock.cxx =================================================================== RCS file: /cvs/ecos/ecos/packages/io/wallclock/current/src/wallclock.cxx,v retrieving revision 1.8 diff -u -p -r1.8 wallclock.cxx --- src/wallclock.cxx 29 Jan 2009 17:49:49 -0000 1.8 +++ src/wallclock.cxx 4 Feb 2009 17:14:26 -0000 @@ -79,7 +79,7 @@ //----------------------------------------------------------------------------- // Local static variables -static Cyg_WallClock wallclock_instance CYGBLD_ATTRIB_INIT_AFTER( CYG_INIT_CLOCK ); +static Cyg_WallClock wallclock_instance CYGBLD_ATTRIB_INIT_PRI( CYG_INIT_DEV_WALLCLOCK ); #ifndef CYGSEM_WALLCLOCK_SET_GET_MODE static cyg_uint32 epoch_ticks;