Windows Programming Question: Download Windows Programming PDF

What is a kernel object?

Tweet Share WhatsApp

Answer:

Each kernel object is simply a memory block allocated by the kernel and is accessible only by the kernel. This memory block is a data structure whose members maintain information about the object. Some members (security descriptor, usage count, and so on) are the same across all object types, but most are specific to a particular object type. For example, a process object has a process ID, a base priority, and an exit code, whereas a file object has a byte offset, a sharing mode, and an open mode.

Download Windows Programming PDF Read All 30 Windows Programming Questions
Previous QuestionNext Question
You forget to call CloseHandle - will there be a memory leak?Name few functions that create Kernel Objects?