Windows Programming Question:

Name few functions that create Kernel Objects?

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.

Read All 30 Windows Programming Questions
Previous QuestionNext Question
What is a kernel object?How to identify the difference between the kernel object and user object?