1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-03 17:05:54 +03:00

source4/smbd: Fix prototypes for all functions.

This commit is contained in:
Jelmer Vernooij 2011-03-19 00:43:15 +01:00
parent e02f1cd9b1
commit c104e4ca54
5 changed files with 9 additions and 0 deletions

View File

@ -21,6 +21,7 @@
#include "includes.h"
#include "system/filesys.h"
#include "smbd/pidfile.h"
/**
* @file

View File

@ -45,6 +45,8 @@ static int none_setproctitle(const char *fmt, ...)
}
#endif
NTSTATUS process_model_onefork_init(void);
/*
called when the process model is selected
*/

View File

@ -45,6 +45,8 @@ static int none_setproctitle(const char *fmt, ...)
}
#endif
NTSTATUS process_model_prefork_init(void);
/*
called when the process model is selected
*/

View File

@ -26,6 +26,8 @@
#include "system/filesys.h"
#include "cluster/cluster.h"
NTSTATUS process_model_single_init(void);
/*
called when the process model is selected
*/

View File

@ -42,6 +42,8 @@ static int none_setproctitle(const char *fmt, ...)
}
#endif
NTSTATUS process_model_standard_init(void);
/* we hold a pipe open in the parent, and the any child
processes wait for EOF on that pipe. This ensures that
children die when the parent dies */