2003-07-04 18:42:03 +03:00
|
|
|
#ifndef __SHARED_H
|
|
|
|
#define __SHARED_H
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "types.hh"
|
2003-07-04 18:42:03 +03:00
|
|
|
|
2006-12-04 19:17:13 +02:00
|
|
|
#include <signal.h>
|
|
|
|
|
2003-07-04 18:42:03 +03:00
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
/* These are not implemented here, but must be implemented by a
|
|
|
|
program linking against libmain. */
|
|
|
|
|
|
|
|
/* Main program. Called by main() after the ATerm library has been
|
|
|
|
initialised and some default arguments have been processed (and
|
|
|
|
removed from `args'). main() will catch all exceptions. */
|
2006-09-05 00:06:23 +03:00
|
|
|
void run(nix::Strings args);
|
2003-07-04 18:42:03 +03:00
|
|
|
|
2003-12-01 17:55:05 +02:00
|
|
|
/* Should print a help message to stdout and return. */
|
|
|
|
void printHelp();
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
extern std::string programId;
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2005-02-01 14:36:25 +02:00
|
|
|
/* Ugh. No better place to put this. */
|
|
|
|
Path makeRootName(const Path & gcRoot, int & counter);
|
|
|
|
void printGCWarning();
|
|
|
|
|
2006-12-03 17:32:38 +02:00
|
|
|
/* Whether we're running setuid. */
|
2006-12-03 22:41:22 +02:00
|
|
|
extern bool setuidMode;
|
2006-12-03 17:32:38 +02:00
|
|
|
|
2006-12-04 19:17:13 +02:00
|
|
|
extern volatile ::sig_atomic_t blockInt;
|
|
|
|
|
2007-01-14 14:32:44 +02:00
|
|
|
MakeError(UsageError, nix::Error);
|
2006-12-04 19:17:13 +02:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|
2003-07-04 18:42:03 +03:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__SHARED_H */
|