OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pidfilename
(Results
1 - 1
of
1
) sorted by null
/external/ppp/pppd/
main.c
135
static char
pidfilename
[MAXPATHLEN]; /* name of pid file */
variable
812
if (
pidfilename
[0])
857
slprintf(
pidfilename
, sizeof(
pidfilename
), "%s%s.pid",
859
if ((pidfile = fopen(
pidfilename
, "w")) != NULL) {
863
error("Failed to create pid file %s: %m",
pidfilename
);
864
pidfilename
[0] = 0;
899
if (
pidfilename
[0] != 0 && unlink(
pidfilename
) < 0 && errno != ENOENT)
900
warn("unable to delete pid file %s: %m",
pidfilename
);
[
all
...]
Completed in 294 milliseconds