1
0
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:
Jelmer Vernooij
2006-02-28 13:12:39 +00:00
committed by Gerald (Jerry) Carter
parent ef6e30c72c
commit 90812203df
23 changed files with 1584 additions and 229 deletions

View File

@@ -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;