Skip to content
Snippets Groups Projects
Commit 4de33883 authored by Petr Baudis's avatar Petr Baudis
Browse files

common.h: Convert some unnecessary variables to macros

parent f26e010b
No related branches found
No related tags found
No related merge requests found
...@@ -11,9 +11,9 @@ ...@@ -11,9 +11,9 @@
* has reserved less than minfree (in case of too little memory, * has reserved less than minfree (in case of too little memory,
* user takes precedence) and user does not have reserved more * user takes precedence) and user does not have reserved more
* than maxfree. */ * than maxfree. */
size_t static_minfree = 512*1048576UL; #define static_minfree (512*1048576UL)
size_t static_maxfree = 2048*1048576UL; #define static_maxfree (2048*1048576UL)
double split_ratio = 0.5; #define split_ratio 0.5
/* Default nice value for processes started using compctl --run. */ /* Default nice value for processes started using compctl --run. */
#define COMPNICE 12 #define COMPNICE 12
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment