exception handler not recognized
Sat, 13 Mar 2010 19:45:00 +0100
I've some code which provides the functionality of UNIX ucontext
(makecotnext()/swapcontext()). It is supposed to replace WIN32 Fiber
(because fibers have some limitations -> can not be migrated between
threads etc.). The code uses inline assembler and works until the
defered function throws an exception.
I ...
|
Re: C runtime library function 'remove(path)' does work
Fri, 12 Mar 2010 12:13:40 -0800 (PST)
On Mar 12, 6:30 am, Jonathan de Boyne Pollard <J.deBoynePollard-
newsgro...@NTLWorld.COM> wrote:
> And you can be among our number when you read about
> filesystem tunelling. MSKB 172190 is your friend.
OK, I read the KB article, and I understand why I get the behavior I
observed (my tests only waited for ...
|
Re: C runtime library function 'remove(path)' does work
Fri, 12 Mar 2010 14:30:42 +0000
>
>
> Can anyone explain this behavior?
>
Yes, thank you. And you can be among our number when you read about
filesystem tunelling. MSKB 172190 is your friend.
...
|
Same issue. Win2k3
Fri, 12 Mar 2010 04:45:43 -0800 (PST)
Any workarounds? ...
|
Timer-queue timer callback proc and re-entrancy
Thu, 11 Mar 2010 14:29:36 -0500
What is the best practice to deal with re-entrancy issues in a callabck
function? As far as I understand, the callback function can be called by
different threads even if another callback is in progress. The only
exception seems to be a timer created with WT_EXECUTEINTIMERTHREAD flag. Am
I correct?
T ...
|
Cheat anti-debuging application
Thu, 11 Mar 2010 12:19:13 +0100
Hi,
I have an application checking if debugger is running. If so the application
just exits. Is there a way to debug this kind of application?
Thanks,
tim
...
|
2 questions about memory mapped files
Wed, 10 Mar 2010 11:25:01 -0800
Hello.
I'm looking for definitive answers to those two questions:
1. When using a persisted memory mapped file, is there a guarantee made by
the OS that the content of the memory mapped file will always be written to
disk even if the application terminates unexpectedly? In other words, if we
write to a v ...
|
|
|
Disabling RPC MIDL rundown generation
Wed, 10 Mar 2010 06:59:34 -0500
How do I make MIDL not generate server side rundown routines with
version v6.0+?
In my RPC client/server framework, I three RPC client DLL with three
implicit_handle bindings. auto_handle is not used. The main DLL is
the only one with a run down, the other two are helper client dlls and
don't need a run ...
|
Find out who has file open for writing?
Wed, 10 Mar 2010 02:55:27 -0700
In a networked environment, it is possible for multiple
users to open the same file simultaneously. I believe
that the first user to open the file is allowed to have
write access to the file, but anybody else who opens the
file same gets "read only" access.
Are there any API's I can use to enumerate through ...
|
Understanding relocation information
Mon, 8 Mar 2010 06:35:20 -0800 (PST)
Hi,
I couldn't find a more appropriate newsgroup to post this question, so
If you think of a better place, please redirect me gently.
I am trying to understand how relocation information apply, but I am
only half the way. For Image files, I think I am ok. But for COFF
relocations, I don't understand the spe ...
|