summaryrefslogtreecommitdiff
path: root/src/constants.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants.h')
-rw-r--r--src/constants.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/constants.h b/src/constants.h
index 5891d7a..2d49ffd 100644
--- a/src/constants.h
+++ b/src/constants.h
@@ -4,6 +4,9 @@
#define APP_NAME "Hinata"
#define MAX_VALUE 100
+#define MAX_THREAD 6
+#define MAX_THREAD_SIZE 10485760
+
#define CEIL_DIV(a, b) (((a) + (b)-1) / (b))
#define MAX(x, y) ((x) > (y)) ? (x) : (y)