<p></p>
<blockquote>
<p>What's the definition for Time class>>utcMicrosecondClock? It should be primitive 240.</p>
</blockquote>
<p>It is. I'm using a fresh trunk image.</p>
<blockquote>
<p>Also, if you write a C program to print out the result of GetSystemTimePreciseAsFileTime, and to convert it to the Smalltalk epoch via WindowsTime / 10 + (microseconds from 1601 to 1901), what does that look like?</p>
</blockquote>
<p>Did I mention that my C is very rudimentary? <g-emoji class="g-emoji" alias="sweat_smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f605.png">😅</g-emoji><br>
This is what I wrote:</p>
<div class="highlight highlight-source-c"><pre>#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds"><</span>stdio.h<span class="pl-pds">></span></span>
#<span class="pl-k">include</span> <span class="pl-s"><span class="pl-pds"><</span>windows.h<span class="pl-pds">></span></span>

<span class="pl-k">int</span> <span class="pl-en">main</span>(<span class="pl-k">void</span>) {
        FILETIME ft;
        ULARGE_INTEGER ui;
        
        <span class="pl-c1">GetSystemTimePreciseAsFileTime</span>(&ft);
        ui.<span class="pl-smi">LowPart</span>=ft.<span class="pl-smi">dwLowDateTime</span>;
        ui.<span class="pl-smi">HighPart</span>=ft.<span class="pl-smi">dwHighDateTime</span>;
        
        <span class="pl-c1">printf</span>(<span class="pl-s"><span class="pl-pds">"</span><span class="pl-c1">%i</span><span class="pl-pds">"</span></span>, ui.<span class="pl-smi">QuadPart</span> / <span class="pl-c1">10</span> - <span class="pl-c1">9467020800000000</span>);
}</pre></div>
<p>And it outputs:</p>
<pre><code>❯ .\timeTest.exe
718860433
</code></pre>
<p>Does this help? :-)</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/OpenSmalltalk/opensmalltalk-vm/issues/531#issuecomment-715534338">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AIJPEW22IIFUTVZIZQG5AETSMHJLXANCNFSM4S3RGTGQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AIJPEW2PGBCGUFU3TGXCZYTSMHJLXA5CNFSM4S3RGTG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOFKTDAAQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/OpenSmalltalk/opensmalltalk-vm/issues/531#issuecomment-715534338",
"url": "https://github.com/OpenSmalltalk/opensmalltalk-vm/issues/531#issuecomment-715534338",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>