From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,8c564a80b820db35 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.201.129 with SMTP id ka1mr10914006pbc.6.1331052396942; Tue, 06 Mar 2012 08:46:36 -0800 (PST) Path: h9ni46492pbe.0!nntp.google.com!news2.google.com!goblin2!goblin.stu.neva.ru!newsfeed1.swip.net!85.214.198.2.MISMATCH!eternal-september.org!feeder.eternal-september.org!mx04.eternal-september.org!.POSTED!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Any leap year issues caused by Ada yesterday? Date: Tue, 06 Mar 2012 16:46:35 +0000 Organization: A noiseless patient Spider Message-ID: References: <4f4f746a$0$6565$9b4e6d93@newsspool3.arcor-online.net> <20608866.730.1330963171058.JavaMail.geo-discussion-forums@ynbq18> <1t8v4akrmapkl.1xwfi9yxtw2ji$.dlg@40tude.net> <18ghv3yeh1a1k$.1bjwdaps59rt3$.dlg@40tude.net> Mime-Version: 1.0 Injection-Info: mx04.eternal-september.org; posting-host="dFCm8HWntFqmDIilBLqEJQ"; logging-data="3788"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/oR34rY8lwLrQcQAcNC2Ajkmp3vEpNvoA=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.3 (darwin) Cancel-Lock: sha1:xcH3zBpKziXuMBOrdoRSKzmqxNg= sha1:RjqQOO+oEUlscSXX7Sp+iF+raI4= Content-Type: text/plain; charset=us-ascii Date: 2012-03-06T16:46:35+00:00 List-Id: "Dmitry A. Kazakov" writes: > Under VxWorks you can read the TSC without assembly, there is a library > function for that (pentiumTscGet64). > > type Timestamp is new Unsigned_64; > procedure pentiumTscGet64 (Clock : out Timestamp); > pragma Import (C, pentiumTscGet64, "pentiumTscGet64"); > > should do the work. Not sure if there was an equivalent for PPC. > The actual problem is to get the multiplier, the BIOS time, and keeping the > TSC synchronized with the system clock. Funnily Wind River did all that for > Pentium IV. But then they were too lazy to support it on more recent x86 > processors. The most troublesome thing about VxWorks is that Wind River > adds and removes its parts at will. There is no such thing as backward > compatibility whatsoever. The board manufacturer defined the multiplier for us, so no problems. > As for multicore/sleep mode issues, AFAIK Intel fixed that, i.e. the TSC > frequency is never changed. I don't know anything about MacOS, but probably > they deploy the same lousy schema of getting time from the PIT timer or > something like that, so the problems. I think I may have misunderstood the evidence here. Trying it again, the TSC runs at pretty close to the nominal 2.4 GHz, but it was unreasonable of me to try to *measure* it by looping for a second and seeing how much the TSC changed, and then be surprised at errors of the order of a few milliseconds. But, as you say, you have to calibrate the TSC somehow.