From b7d7350bd30130a9d4b0d3b29ec1756bcc5bc00d Mon Sep 17 00:00:00 2001 From: Patrick Lipka Date: Thu, 7 Aug 2025 15:41:48 +0200 Subject: [PATCH] add constants --- src/rvprof_internal.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/rvprof_internal.h diff --git a/src/rvprof_internal.h b/src/rvprof_internal.h new file mode 100644 index 0000000..3769bfc --- /dev/null +++ b/src/rvprof_internal.h @@ -0,0 +1,31 @@ +#ifndef RVPROF_INTERNAL_H +#define RVPROF_INTERNAL_H + +#include +#include +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C"{ +#endif + +// constants +#define INITIAL_FUNCTIONS 128 +#define INITIAL_STACKS 256 +#define INITIAL_REGIONS 128 +#define INITIAL_SYMBOLS 512 +#define GROWTH_FACTOR 2 +#define MAX_NAME_LEN 64 + + + + + +#ifdef __cplusplus +} +#endif + +#endif \ No newline at end of file