X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fcommand-line.h;h=bb12f72c191046ea0b5080fbc6354cb438457e19;hb=003ce655b7116d18c86a74c50391e54990346931;hp=bc2071eff1a96a2bff18bb3b7e6dabee08851859;hpb=675febfa2f31372e45e2a6a28ce19256b22106d7;p=sliver-openvswitch.git diff --git a/lib/command-line.h b/lib/command-line.h index bc2071eff..bb12f72c1 100644 --- a/lib/command-line.h +++ b/lib/command-line.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2009 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -33,4 +33,13 @@ struct command { char *long_options_to_short_options(const struct option *options); void run_command(int argc, char *argv[], const struct command[]); +void proctitle_init(int argc, char **argv); +#if defined(__FreeBSD__) || defined(__NetBSD__) +#define proctitle_set setproctitle +#else +void proctitle_set(const char *, ...) + PRINTF_FORMAT(1, 2); +#endif +void proctitle_restore(void); + #endif /* command-line.h */