RE: Does XP support machines that does not support th is

The code surely does not looks like that. The sysenter/sysexit bit, bit-11,
in cupid 1, edx.

Prokash (garlic.com), from the many questions you asked, the thing you are
doing looked like a project I did (but not finished because of layoff) with
my previous empolyer. It is most likely they are totally unrelated. Do you
mind if you could tell me in private for this particluar thing you are
working on, who are you working for?

Bi

-----Original Message-----
From: Prokash Sinha [mailto:xxxxx@zonelabs.com]
Sent: Thursday, October 24, 2002 11:11 AM
To: File Systems Developers
Subject: [ntfsd] RE: Does XP support machines that does not support th
is

The point of this question is to findout if the mode switching for XP is
still thru INT2E ( or Pentium II+ syscall/sysexit ) or thru combination of
both. XP hw requirement shows ( some 233 Mhz +, cant remember), and pentium
II stopped there. *Note that syscall/sysexit is relatively new
introduction…*

-prokash

-----Original Message-----
From: Prokash Sinha
Sent: Wednesday, October 23, 2002 9:04 AM
To: File Systems Developers
Subject: [ntfsd] RE: Does XP support machines that does not support th is

On the IA32 domain. Not IA64…

-prokash

-----Original Message-----
From: Curless, Jeffrey [mailto:xxxxx@concord.com]
Sent: Wednesday, October 23, 2002 6:18 AM
To: File Systems Developers
Subject: [ntfsd] RE: Does XP support machines that does not support this

Considering XP supports the IA 64 I would have to say yes it does
support machines that don’t support that.

-Jeff

-----Original Message-----
From: xxxxx@garlic.com [mailto:xxxxx@garlic.com]
Sent: Wednesday, October 23, 2002 9:21 AM
To: File Systems Developers
Subject: [ntfsd] Does XP support machines that does not support this

#include <stdio.h>

void main( )
{
unsigned int tmp, processorSignature;

tmp = processorSignature = 0;
asm mov eax, 1;

asm cpuid;
__asm mov processorSignature, eax ;
__ asm mov tmp, edx;

if (tmp & 0x00000800 ) {
if ( (processorSignature & 0x0fff3fff) < 0x00000633 )
printf(" fast call is not supported\n");
else
printf(" fast call supported\n");
}

}


You are currently subscribed to ntfsd as: xxxxx@concord.com
To unsubscribe send a blank email to %%email.unsub%%


This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
the latest virus scan software available for the presence of computer
viruses.



You are currently subscribed to ntfsd as: xxxxx@zonelabs.com
To unsubscribe send a blank email to %%email.unsub%%


You are currently subscribed to ntfsd as: xxxxx@zonelabs.com
To unsubscribe send a blank email to %%email.unsub%%


You are currently subscribed to ntfsd as: xxxxx@appstream.com
To unsubscribe send a blank email to %%email.unsub%%</stdio.h>