a few more raddbgi, raddbgic -> rdi, rdim notes

This commit is contained in:
Ryan Fleury
2024-02-13 16:06:56 -08:00
parent 816f94ef71
commit f18e236431
2 changed files with 10 additions and 7 deletions
+5 -2
View File
@@ -7,6 +7,9 @@
// Library for building loose data structures which contain // Library for building loose data structures which contain
// RADDBGI debug information, and baking that down into the // RADDBGI debug information, and baking that down into the
// proper flattened RADDBGI format. // proper flattened RADDBGI format.
//
// Requires prior inclusion of the RAD Debug Info, (R)AD(D)BG(I)
// Format Library, in raddbgi_format.h.
#ifndef RADDBGI_MAKE_H #ifndef RADDBGI_MAKE_H
#define RADDBGI_MAKE_H #define RADDBGI_MAKE_H
@@ -159,7 +162,7 @@ struct RDIM_Arena
//////////////////////////////// ////////////////////////////////
//~ rjf: Overrideable Thread-Local Scratch Arenas //~ rjf: Overrideable Thread-Local Scratch Arenas
// To override the default thread-local scratch arenas used b yhe library, // To override the default thread-local scratch arenas used by the library,
// do the following: // do the following:
// //
// #define RDIM_SCRATCH_OVERRIDE // #define RDIM_SCRATCH_OVERRIDE
@@ -187,7 +190,7 @@ struct RDIM_Temp
#endif #endif
//////////////////////////////// ////////////////////////////////
//~ rjf: Linked List Helpers //~ rjf: Linked List Helper Macros
#define RDIM_CheckNil(nil,p) ((p) == 0 || (p) == nil) #define RDIM_CheckNil(nil,p) ((p) == 0 || (p) == nil)
#define RDIM_SetNil(nil,p) ((p) = nil) #define RDIM_SetNil(nil,p) ((p) = nil)