Process Handles and Identifiers
When a new process is created by the
CreateProcess function, handles of the new process and its primary thread are returned.
These handles are created with full access rights, and
subject to security access checking
can be used in any of the functions that accept thread or process handles.
These handles can be inherited by child processes, depending on the inheritance
flag specified when they are created. The handles are valid until closed, even
after the process or thread they represent has been terminated.
The
CreateProcess function also returns an identifier that uniquely identifies the process
throughout the system. A process can use the
GetCurrentProcessId function to get its own process identifier. The identifier is valid from the
time the process is created until the process has been terminated.
If you have a process identifier, you can get the process handle by calling
the
OpenProcess function.
OpenProcess enables you to specify the handle's access rights and whether it can be
inherited.
A process can use the
GetCurrentProcess function to retrieve a pseudo handle to its own process object. This pseudo
handle is valid only for the calling process; it cannot be inherited or
duplicated for use by other processes. To get the real handle to the process, call the
DuplicateHandle function.
- Software for developers
-
Delphi Components
.Net Components
Software for Android Developers
- More information resources
-
MegaDetailed.Net
Unix Manual Pages
Delphi Examples
- Databases for Amazon shops developers
-
Amazon Categories Database
Browse Nodes Database