Browse Source

node.cpp

allocs
Antonio SJ Musumeci 2 weeks ago
parent
commit
1745d7c10a
  1. 7
      libfuse/lib/node.cpp

7
libfuse/lib/node.cpp

@ -10,9 +10,10 @@ struct stack_t
stack_t *next;
};
thread_local static stack_t *g_stack = NULL;
thread_local bool g_should_gc = false;
thread_local bool g_initialized = false;
thread_local static stack_t *g_stack = NULL;
thread_local bool g_should_gc = false;
thread_local bool g_initialized = false;
node_t*
node_alloc()

Loading…
Cancel
Save