[NTOS:SE] Specify the code section of SepCreateSystemProcessToken as INIT

This function is used during the Security kernel module phase initialisation to set up the system process token which the phase initialisation procedure in itself is stored in the INIT section. With that being said, do the same for SepCreateSystemProcessToken too and add a header documentation as an addition.
This commit is contained in:
George Bișoc 2021-03-13 20:45:15 +01:00 committed by Victor Perevertkin
parent 5b5b814af8
commit eba68ffb9c

View file

@ -1389,6 +1389,15 @@ Quit:
return Status;
}
/**
* @brief
* Creates the system process token.
*
* @return
* Returns the system process token if the operations have
* completed successfully.
*/
CODE_SEG("INIT")
PTOKEN
NTAPI
SepCreateSystemProcessToken(VOID)