Re: page fault on 0x7ffe02d8

2005-10-06 Thread Ivan Leo Puoti
Robert Reif wrote: Thanks for the pointer. There was a patch submitted back in 2003 for SharedUserData but it wasn't committed. Is anyone working on implementing SharedUserData for a more recent version of wine? We've got a hack that makes safedisc happy, not currently in CVS. Ivan.

Re: page fault on 0x7ffe02d8

2005-10-06 Thread Robert Reif
Vitaliy Margolen wrote: 0x7ffe is SharedUserData that is present on all NT+ systems. It's format only documented in DDK for kernel address space and only for some first several values. This structure keeps growing as I understand and no one except MS knows what's all in it. We do need this

Re: page fault on 0x7ffe02d8

2005-10-06 Thread Uwe Bonnes
> "Robert" == Robert Reif <[EMAIL PROTECTED]> writes: Robert> I am getting this exception: Unhandled exception: page fault on Robert> read access to 0x7ffe02d8 in 32-bit code (0x51102a96). Robert> and I found this in winternal.h: Robert> #if (_WIN32_WINNT >= 0x0501) #define

Re: page fault on 0x7ffe02d8

2005-10-05 Thread Ivan Leo Puoti
Vitaliy Margolen wrote: 0x7ffe is SharedUserData that is present on all NT+ systems. It's format only documented in DDK for kernel address space and only for some first several values. This structure keeps growing as I understand and no one except MS knows what's all in it. We do need this s

Re: page fault on 0x7ffe02d8

2005-10-05 Thread Ivan Leo Puoti
You can see the start of what's there in include/ddk/wdm.h, it's the KSHARED_USER_DATA struct. It's meant to be read only memory for user mode. Ivan.

Re: page fault on 0x7ffe02d8

2005-10-05 Thread Vitaliy Margolen
Wednesday, October 5, 2005, 9:24:00 PM, Robert Reif wrote: > I am getting this exception: > Unhandled exception: page fault on read access to 0x7ffe02d8 in 32-bit > code (0x51102a96). > and I found this in winternal.h: #if (_WIN32_WINNT >>= 0x0501) > #define INTERNAL_TS_ACTIVE_CONSOLE_ID ( *((v

page fault on 0x7ffe02d8

2005-10-05 Thread Robert Reif
I am getting this exception: Unhandled exception: page fault on read access to 0x7ffe02d8 in 32-bit code (0x51102a96). and I found this in winternal.h: #if (_WIN32_WINNT >= 0x0501) #define INTERNAL_TS_ACTIVE_CONSOLE_ID ( *((volatile ULONG*)(0x7ffe02d8)) ) #endif /* (_WIN32_WINNT >= 0x0501) */