<p>An expansive scattering of changes, but pretty much all of them are...<br>
simply refactoring <code>fprintf(stderr,</code>  ==>  <code>fprintf(VM_ERR(),</code><br>
excepting the following which looks fine...</p>
<pre><code>static FILE *VM_ERR_FILE = NULL;

FILE *VM_ERR(void)
{
        if (!VM_ERR_FILE) {
                VM_ERR_FILE = stderr;
        }
        return VM_ERR_FILE;
}

void sqSetVmErrFile(FILE *file)
{
        VM_ERR_FILE = file;
}



static int vm_parseArgument(int argc, char **argv)
{
   ...
   else if (!strcmp(argv[0], VMOPTION("quiet"))) {
       sqSetVmErrFile(fopen("/dev/null", "w"));
       return 1;
    }
    return 0; /* option not recognised */
}

(void) printUsage {
        ...
        printf("  "VMOPTION("quiet")"                don't print debugging messages from the VM\n");
        ...
}

        
</code></pre>
<p>And the following seems correct to align with sq.h...</p>
<pre><code>- extern void addIdleUsecs(long idleUsecs);
+ extern void addIdleUsecs(sqInt idleUsecs);
</code></pre>
<p><a href="https://github.com/OpenSmalltalk/opensmalltalk-vm/blob/83aebb122ca2fd32a86ef8b7d478ed32b12dc6b1/platforms/Cross/vm/sq.h#L180">https://github.com/OpenSmalltalk/opensmalltalk-vm/blob/83aebb122ca2fd32a86ef8b7d478ed32b12dc6b1/platforms/Cross/vm/sq.h#L180</a></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/pull/395?email_source=notifications&email_token=AIJPEW7MAOBSGEALOKDWVDTPVQHA7A5CNFSM4HKXXHEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVOV7TQ#issuecomment-492658638">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AIJPEW7QY5VDCPWSCIINICTPVQHA7ANCNFSM4HKXXHEA">mute the thread</a>.<img src="https://github.com/notifications/beacon/AIJPEW6JBPUF5LDJCYXU7KLPVQHA7A5CNFSM4HKXXHEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVOV7TQ.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/pull/395?email_source=notifications\u0026email_token=AIJPEW7MAOBSGEALOKDWVDTPVQHA7A5CNFSM4HKXXHEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVOV7TQ#issuecomment-492658638",
"url": "https://github.com/OpenSmalltalk/opensmalltalk-vm/pull/395?email_source=notifications\u0026email_token=AIJPEW7MAOBSGEALOKDWVDTPVQHA7A5CNFSM4HKXXHEKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODVOV7TQ#issuecomment-492658638",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>