X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fdaemon.h;h=d0c324cfc3906ffb9a8ef5df6981a7be3043806e;hb=85ab0a021523e51435539af0e6a138c73c9846a2;hp=d62dd4f01ae381c5008861d84381cc5d26026960;hpb=91a1e24d09ba1f08b1f8c08815f595187c6ef946;p=openvswitch diff --git a/lib/daemon.h b/lib/daemon.h index d62dd4f0..d0c324cf 100644 --- a/lib/daemon.h +++ b/lib/daemon.h @@ -22,17 +22,20 @@ #include enum { - OPT_NO_CHDIR = UCHAR_MAX + 2048 + OPT_DETACH = UCHAR_MAX + 2048, + OPT_NO_CHDIR, + OPT_OVERWRITE_PIDFILE, + OPT_PIDFILE, }; -#define DAEMON_LONG_OPTIONS \ - {"detach", no_argument, 0, 'D'}, \ - {"no-chdir", no_argument, 0, OPT_NO_CHDIR}, \ - {"force", no_argument, 0, 'f'}, \ - {"pidfile", optional_argument, 0, 'P'} +#define DAEMON_LONG_OPTIONS \ + {"detach", no_argument, 0, OPT_DETACH}, \ + {"no-chdir", no_argument, 0, OPT_NO_CHDIR}, \ + {"pidfile", optional_argument, 0, OPT_PIDFILE}, \ + {"overwrite-pidfile", no_argument, 0, OPT_OVERWRITE_PIDFILE} #define DAEMON_OPTION_HANDLERS \ - case 'D': \ + case OPT_DETACH: \ set_detach(); \ break; \ \ @@ -40,11 +43,11 @@ enum { set_no_chdir(); \ break; \ \ - case 'P': \ + case OPT_PIDFILE: \ set_pidfile(optarg); \ break; \ \ - case 'f': \ + case OPT_OVERWRITE_PIDFILE: \ ignore_existing_pidfile(); \ break;