ntdll problem

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
vavincavent
Newbie
Newbie
Posts: 2
Joined: Fri Jun 20, 2008 5:15 am

ntdll problem

Post by vavincavent »

I'm trying with catia program with wine.
It's installed, but i can't open it, at the beginning i have this problem :

Code: Select all

vincent@vincent-laptop:~/.wine/drive_c/Program Files/Dassault Systemes/B16/intel_a/code/bin$ wine catstart.exe
fixme:ntdll:NtConnectPort (0x144850,L"\\RPC Control\\Magellan3DController",0x33f0f4,(nil),(nil),(nil),0x33f11c,0x33f104),stub!
fixme:ntdll:NtConnectPort (0x144850,L"\\RPC Control\\Magellan3DController",0x33f0f4,(nil),(nil),(nil),0x33f11c,0x33f104),stub!
fixme:ntdll:NtConnectPort (0x144850,L"\\RPC Control\\Magellan3DController",0x33f0f4,(nil),(nil),(nil),0x33f11c,0x33f104),stub!
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
wine: Unhandled exception 0x80000003 at address 0x7b840e83 (thread 002b), starting debugger...
I don't have found anything about this on internet, can someone help me?

my configuration :
ubuntu 8.04 - 32 bits
wine 1.0
vitamin
Moderator
Moderator
Posts: 6605
Joined: Sat Feb 23, 2008 2:29 pm

Re: ntdll problem

Post by vitamin »

vavincavent wrote:I'm trying with catia program with wine.
It's installed, but i can't open it, at the beginning i have this problem :

Code: Select all

vincent@vincent-laptop:~/.wine/drive_c/Program Files/Dassault Systemes/B16/intel_a/code/bin$ wine catstart.exe
fixme:ntdll:NtConnectPort (0x144850,L"\\RPC Control\\Magellan3DController",0x33f0f4,(nil),(nil),(nil),0x33f11c,0x33f104),stub!
fixme:ntdll:NtConnectPort (0x144850,L"\\RPC Control\\Magellan3DController",0x33f0f4,(nil),(nil),(nil),0x33f11c,0x33f104),stub!
fixme:ntdll:NtConnectPort (0x144850,L"\\RPC Control\\Magellan3DController",0x33f0f4,(nil),(nil),(nil),0x33f11c,0x33f104),stub!
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
wine: Unhandled exception 0x80000003 at address 0x7b840e83 (thread 002b), starting debugger...
I don't have found anything about this on internet, can someone help me?

my configuration :
ubuntu 8.04 - 32 bits
wine 1.0
How did you installed your program?
From the logs it seems something was not setup properly. However keep in mind that Wine does not implement everything and some programs just won't work.
vavincavent
Newbie
Newbie
Posts: 2
Joined: Fri Jun 20, 2008 5:15 am

Post by vavincavent »

I've installed with wine, i don't remember which version. without problem.
mikolajz
Level 2
Level 2
Posts: 20
Joined: Wed Feb 27, 2008 7:18 am

Post by mikolajz »

What are your DLL overwrites? You can check them by running `winecfg` on the Libraries tab. Such errors could be because of running some Windows libraries that makes low-level NTDLL calls that are not supported by Wine.

The other possibility it is the program that uses NTDLL directly to create an LPC connection. LPCs are not implemented and AFAIK are not planned in the near future. In that case you could try to open a bug on http://bugs.winehq.org. Maybe one day the LPC will be implemented to speed up the RPC and a bug report will be a further motivation to do it.
Locked