Skip to content

Commit

Permalink
Put jl_gc_new_weakref in a header file again (JuliaLang#56319)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens authored Oct 24, 2024
1 parent f285de5 commit 5cdf378
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/gc-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 +185,13 @@ extern jl_ptls_t* gc_all_tls_states;

extern int gc_logging_enabled;

// =========================================================================== //
// Misc
// =========================================================================== //

// Allocates a new weak-reference, assigns its value and increments Julia allocation
// counters. If thread-local allocators are used, then this function should allocate in the
// thread-local allocator of the current thread.
JL_DLLEXPORT jl_weakref_t *jl_gc_new_weakref(jl_value_t *value);

#endif // JL_GC_COMMON_H

0 comments on commit 5cdf378

Please sign in to comment.