diff options
Diffstat (limited to 'src/rt/rust_internal.h')
| -rw-r--r-- | src/rt/rust_internal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rt/rust_internal.h b/src/rt/rust_internal.h index f008d9f6..9a1b2ec0 100644 --- a/src/rt/rust_internal.h +++ b/src/rt/rust_internal.h @@ -88,6 +88,10 @@ static size_t const TIME_SLICE_IN_MS = 10; static intptr_t const CONST_REFCOUNT = 0x7badface; +// This accounts for logging buffers. + +static size_t const BUF_BYTES = 1024; + // Every reference counted object should derive from this base class. template <typename T> struct rc_base { |