3

Where i can find free and malloc functions in kernel? I do include stdlib.h but free and malloc functions are not in stdlib.h. Where i can find these functions?

Thanks!

RomanKarpuk
  • 57
  • 1
  • 7

1 Answers1

3

Take a look at ExAllocatePoolWithTag. There's some discussion at OSR, which is a good resource if you're doing windows kernel programming.

Install the Windows Driver Kit/DDK for all the development files and docs on your local host.

Paul Rubel
  • 26,632
  • 7
  • 60
  • 80