mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[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:
parent
5b5b814af8
commit
eba68ffb9c
1 changed files with 9 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue