mirror of
https://github.com/samba-team/samba.git
synced 2025-12-03 04:23:50 +03:00
r13752: Add doxyfile and fix formatting of comments. Current output is available at http://samba.org/~jelmer/util-api/
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
ef6e30c72c
commit
90812203df
@@ -27,8 +27,15 @@
|
||||
#define O_NONBLOCK
|
||||
#endif
|
||||
|
||||
/* return the pid in a pidfile. return 0 if the process (or pidfile)
|
||||
does not exist */
|
||||
/**
|
||||
* @file
|
||||
* @brief Pid file handling
|
||||
*/
|
||||
|
||||
/**
|
||||
* return the pid in a pidfile. return 0 if the process (or pidfile)
|
||||
* does not exist
|
||||
*/
|
||||
pid_t pidfile_pid(const char *name)
|
||||
{
|
||||
int fd;
|
||||
@@ -73,7 +80,9 @@ pid_t pidfile_pid(const char *name)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* create a pid file in the pid directory. open it and leave it locked */
|
||||
/**
|
||||
* create a pid file in the pid directory. open it and leave it locked
|
||||
*/
|
||||
void pidfile_create(const char *name)
|
||||
{
|
||||
int fd;
|
||||
|
||||
Reference in New Issue
Block a user