struct in Unity.Collections.LowLevel.Unsafe
/
Implemented in:UnityEngine.CoreModule
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseCoordinate safe access to native container memory inside the job system.
AtomicSafetyHandle
holds a reference to the central information that the safety system stores for a given native container. When a job contains a NativeContainer
instance, the job
system automatically configures the flags in AtomicSafetyHandle
to reflect the way that the native container can be used in that job. Each job has a separate AtomicSafetyHandle
instance for a given native
container.
Use this class when you implement a custom NativeContainer
type. Every NativeContainer
instance must contain an AtomicSafetyHandle
field named m_Safety
.
For a conceptual overview of AtomicSafetyHandle and the role it plays in the job system, refer to Implement a custom native container.
CheckDeallocateAndThrow | Check if an AtomicSafetyHandle can be deallocated. |
CheckExistsAndThrow | Check if an AtomicSafetyHandle is valid. |
CheckGetSecondaryDataPointerAndThrow | Check whether it's safe to create a memory-aliasing view to a native container. |
CheckReadAndThrow | Check whether the referenced native container can be read from. |
CheckWriteAndBumpSecondaryVersion | Check whether the referenced native container can be written to and increment the secondary version number if so. |
CheckWriteAndThrow | Check whether the referenced native container can be written to. |
Create | Creates a new AtomicSafetyHandle. |
EnforceAllBufferJobsHaveCompleted | Waits for all jobs running against the AtomicSafetyHandle to complete. |
EnforceAllBufferJobsHaveCompletedAndDisableReadWrite | Waits for all jobs running against an AtomicSafetyHandle to complete and then disables the read and write access on the AtomicSafetyHandle. |
EnforceAllBufferJobsHaveCompletedAndRelease | Waits for all jobs running against an AtomicSafetyHandle to complete and then releases the AtomicSafetyHandle. |
GetAllowReadOrWriteAccess | Checks if the AtomicSafetyHandle is configured to allow reading or writing. |
GetNestedContainer | Checks whether an AtomicSafetyHandle represents a nested container. |
GetReaderArray | Fetches the job handles of all jobs that read from an AtomicSafetyHandle. |
GetReaderName | Gets the name of a specified job that reads from an AtomicSafetyHandle. |
GetTempMemoryHandle | Gets an AtomicSafetyHandle for the temporary memory allocations in a temporary memory scope. |
GetTempUnsafePtrSliceHandle | Gets a single shared AtomicSafetyHandle. |
GetWriter | Gets any writers on an AtomicSafetyHandle. |
GetWriterName | Gets the debug name of the current writer on an AtomicSafetyHandle. |
IsDefaultValue | Checks if an AtomicSafetyHandle has its default value. |
IsHandleValid | Checks if an AtomicSafetyHandle is valid. |
IsTempMemoryHandle | Checks if an AtomicSafetyHandle is the temporary memory safety handle for the active temporary memory scope. |
IsValidNonDefaultHandle | Checks if an AtomicSafetyHandle has been initialized and is valid. |
NewStaticSafetyId | Allocates a new static safety ID to store information for the provided type. |
PrepareUndisposable | Marks an AtomicSafetyHandle so that it can't be disposed of. |
Release | Releases a previously created AtomicSafetyHandle. |
SetAllowReadOrWriteAccess | Sets the read or write access on an AtomicSafetyHandle. |
SetAllowSecondaryVersionWriting | Sets whether other AtomicSafetyHandles that use a secondary version number can write to the NativeContainer protected by a given AtomicSafetyHandle. |
SetBumpSecondaryVersionOnScheduleWrite | Sets whether to automatically bump the secondary version when scheduling a job that has write access to the AtomicSafetyHandle. |
SetCustomErrorMessage | Provides a custom error message for a specific job debugger error type, in cases where additional context can be provided. |
SetNestedContainer | Sets the nested container flag on an AtomicSafetyHandle. |
SetStaticSafetyId | Assigns a provided static safety ID to an AtomicSafetyHandle. |
UseSecondaryVersion | Switches the AtomicSafetyHandle to the secondary version number. |
ValidateNonDefaultHandle | Checks that the handle has been initialized, and if so, checks that it is still valid. |
Did you find this page useful? Please give it a rating:
Thanks for rating this page!
What kind of problem would you like to report?
Thanks for letting us know! This page has been marked for review based on your feedback.
If you have time, you can provide more information to help us fix the problem faster.
Provide more information
You've told us this page needs code samples. If you'd like to help us further, you could provide a code sample, or tell us about what kind of code sample you'd like to see:
You've told us there are code samples on this page which don't work. If you know how to fix it, or have something better we could use instead, please let us know:
You've told us there is information missing from this page. Please tell us more about what's missing:
You've told us there is incorrect information on this page. If you know what we should change to make it correct, please tell us:
You've told us this page has unclear or confusing information. Please tell us more about what you found unclear or confusing, or let us know how we could make it clearer:
You've told us there is a spelling or grammar error on this page. Please tell us what's wrong:
You've told us this page has a problem. Please tell us more about what's wrong:
Thank you for helping to make the Unity documentation better!
Your feedback has been submitted as a ticket for our documentation team to review.
We are not able to reply to every ticket submitted.