Ruby 3.2.5p208 (2024-07-26 revision 31d0f1a2e7dbfb60731d1f05b868e1d578cda493)
rb_ractor_local_storage_type Struct Reference

Type that defines a ractor-local storage. More...

#include <ractor.h>

Data Fields

void(* mark )(void *ptr)
 A function to mark a ractor-local storage.
 
void(* free )(void *ptr)
 A function to destruct a ractor-local storage.
 

Detailed Description

Type that defines a ractor-local storage.

Definition at line 21 of file ractor.h.

Field Documentation

◆ free

void(* rb_ractor_local_storage_type::free) (void *ptr)

A function to destruct a ractor-local storage.

Parameters
[out]ptrA ractor-local storage.
Postcondition
ptr is not a valid pointer.

Definition at line 37 of file ractor.h.

◆ mark

void(* rb_ractor_local_storage_type::mark) (void *ptr)

A function to mark a ractor-local storage.

Parameters
[out]ptrA ractor-local storage.
Postcondition
Ruby objects inside of ptr are marked.

Definition at line 29 of file ractor.h.


The documentation for this struct was generated from the following file: