Re: wine on Intel Xeon processor

2006-02-10 Thread Ananth M
someon-chip components (such as the total cache). You'd get all of the cache lines allocated to one chip in UP, and divided among the cores in SMP.There are probably other resources on the chip for which this is thecase... perhaps that is a source of your slowness?--coleman kane > Ananth M

wine on Intel Xeon processor

2006-02-09 Thread Ananth M
Hi All     I have a windows application that calls a function (   approximately 1 times) exported by a third party DLL.                I have two machines ( one with Intel pentium 4 processor and   other with Intel Xeon processor ) with RHEL 4.0 installed on both of these   machine

wine on Intel Xeon Processor

2006-02-09 Thread Ananth M
Hi       I have a windows application that calls a function ( approximately 1 times) exported by a third party DLL.    I have two machines ( one with Intel pentium 4 processor and other with Intel Xeon processor ) with RHEL 4.0 installed on both of these machine.      

Wine with multiple threads on Dual processor - any suggestions please

2006-02-08 Thread Ananth M
Hi,     I am having an application with the processing can be done paralally using multiple threads.     If I compile (with one thread ) and execute this application in Linux , on a Dual processor machine , I am getting execution time ~600 sec.   If I compile ( with 2 threads ), and ex

wine performance question on different machines

2006-01-23 Thread Ananth M
  Hi All ,    I am executing a windows program, that calls function in the vendor supplied dll from one of its functions.   I executed this program in Linux using wine, in two PC's.     PC 1 ( with Enterprize Linux 4.0  ): Processor : Intel Pentium 4 , 2.80 GHzCache Size : 512 KBRAM : 1 GB   Resul

(no subject)

2006-01-16 Thread Ananth M
Hi Maintainers, For the recent wine releases , is there any binary rpm's are available ? In the winehq.com I am able to get the following message only.. Binary packages are in the process of being built, but the source is available now. You can find out more about this release in the an

Re: Question regarding the Wine Vs WineLib performance

2006-01-05 Thread Ananth M
On 1/5/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote:Thank you !! I will try to compile the windows application using MinGW and check the performance using the same DLL. Here is the some more information that I would like to share with you  is :  I am using the Binary only DLL. I am not having

Question regarding the Wine Vs WineLib performance

2006-01-04 Thread Ananth M
Hi All,    This question is related to the performance of wine using wine and WineLib     I have a win32 program that uses a dll. I am checking the timing  to execute a  function  that is exported  by the dll         I wanted to execute this program in Linux  (using wine and WineLib) and

Re: continuosly calling the function from winelib failing - stackoverflow

2005-12-26 Thread Ananth M
Hi All     Thank you for the responce I am able to solve the problem and the problem is due to the calling convention .     Thank you all once again On 12/26/05, Dmitry Timoshkov <[EMAIL PROTECTED]> wrote: Ananth M <[EMAIL PROTECTED]> wrote:>   - Stub function

Re: continuosly calling the function from winelib failing - stack overflow

2005-12-25 Thread Ananth M
application (that uses the dlopen, dlsym() ..) is giving the same results as in case 1. (i.e crashing after 40-50 times)     On 12/23/05, Alex Villací­s Lasso <[EMAIL PROTECTED]> wrote: Ananth M wrote:>Hi> I am able to successfully convert the windows d

continuosly calling the function from winelib failing - stack overflow

2005-12-23 Thread Ananth M
Hi I am able to successfully convert the windows dll into .so file and I am able to call the functions exported by dll from the winelib application. But if I call those functions from winelib application continuously for 1000 times , in a loop, then  wine is crashing with the following e

binary only dll , resolving links through winebuild

2005-12-19 Thread Ananth M
Binary Only Dll (test.dll) with the header file (test.h) - - I have a binary only dll (test.dll) that was created in windows which exports to functions     - int Add (int, int)     - int Subtract (int, int) -

Load Library failed

2005-12-01 Thread Ananth M
Hi All I am having a Simple DLL that was developed and used by the Windows Application. I am trying to port this windows DLL into linux to create the .so file and want to use the same. As metioned in the winedump tool,    I generated the spec file using the command  

Re: Load Library failed

2005-12-01 Thread Ananth M
The problem is due to the Dll Name UpperCase. It is solved , Thank you On 12/1/05, Ananth M <[EMAIL PROTECTED]> wrote: Hi All I am having a Simple DLL that was developed and used by the Windows Application. I am trying to port this windows DLL into linux to create the .so file and w

creating the .so for multiple DLL's

2005-11-30 Thread Ananth M
Hi All,   I am having a windows application that uses a Third Party DLL (let me call is at First.dll ), which uses internally another 3rd party DLL (let me call this as Second.dll). I am not having the equivalant .so files in the Linux version. If I want to use my applica