Example #1
0
/*
  initialise the standard process model, registering ourselves with the process model subsystem
 */
NTSTATUS process_model_standard_init(void)
{
	return register_process_model(&standard_ops);
}
Example #2
0
/*
  initialise the onefork process model, registering ourselves with the process model subsystem
 */
NTSTATUS process_model_onefork_init(void)
{
	return register_process_model(&onefork_ops);
}
Example #3
0
/*
  initialise the single process model, registering ourselves with the
  process model subsystem
 */
NTSTATUS process_model_single_init(void)
{
	return register_process_model(&single_ops);
}