diff options
Diffstat (limited to 'src/config.h')
-rw-r--r-- | src/config.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/config.h b/src/config.h index ef49b4d..df7f81a 100644 --- a/src/config.h +++ b/src/config.h @@ -86,6 +86,14 @@ /** + * The number of additional arguments a libexec server may have + */ +#ifndef LIBEXEC_ARGC_EXTRA_LIMIT +#define LIBEXEC_ARGC_EXTRA_LIMIT 5 +#endif + + +/** * The maximum number of display allowed on the system */ #ifndef DISPLAY_MAX @@ -102,5 +110,21 @@ #endif +/** + * The directory where all servers are installed + */ +#ifndef LIBEXECDIR +#define LIBEXECDIR "/usr/libexec" +#endif + + +/** + * The minimum time that most have elapsed for respawning to be allowed. + */ +#ifndef RESPAWN_TIME_LIMIT_SECONDS +#define RESPAWN_TIME_LIMIT_SECONDS 5 +#endif + + #endif |