In this small program, why does GetCurrentProcess() return -1?

int _tmain(int argc, _TCHAR* argv[]) {
    HANDLE h = GetCurrentProcess(); // ret -1 
    printf("0x%x\n",(DWORD)h); 
    return 0;
}

What's wrong?

In Kernel32.GetCurrentProcess I see this:

OR EAX,FFFFFFFF  ; EAX - ?
RETN
link|improve this question

71% accept rate
feedback

3 Answers

up vote 9 down vote accepted

That is correct, see this API reference for GetCurrentProcess.

The GetCurrentProcess function retrieves a pseudo-handle for the current process, which is currently defined as (HANDLE)-1. However, because you should not assume that the value will never change, the GetCurrentProcess function is provided as an alternative to hard-coding the constant into your code.

link|improve this answer
feedback

-1 is the pseudo-handle that represents the current process. It's normal.

link|improve this answer
feedback

There is nothing wrong with -1 value. It will indicate current process handle. You can refer remark section in this msdn page

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.