Windows Programming Question:

Name few functions that create Kernel Objects?

Windows Programming Interview Question
Windows Programming Interview Question

Answer:

HANDLE CreateThread(…),HANDLE CreateFile(..),HANDLE CreateFileMapping(..)HANDLE CreateSemaphore(..)etcAll functions that create kernel objects return process-relative handles that can be used successfully by any and all threads that are running in the same process.


Previous QuestionNext Question
What is a kernel object?How to identify the difference between the kernel object and user object?