We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f626c29 commit aba92d4Copy full SHA for aba92d4
src/6model/sixmodelobject.h
@@ -350,6 +350,10 @@ struct SixModel_REPROps {
350
#define IS_CONCRETE(o) (!PObj_flag_TEST(private0, (o)))
351
#define MARK_AS_TYPE_OBJECT(o) PObj_flag_SET(private0, (o))
352
353
+/* Write barriers for noticing changes to objects or STables with an SC. */
354
+#define OBJ_SC_WRITE_BARRIER(o) if (SC_PMC(o)) { }
355
+#define ST_SC_WRITE_BARRIER(st) if ((st)->sc) { }
356
+
357
/* Object model initialization. */
358
void SixModelObject_initialize(PARROT_INTERP, PMC **knowhow, PMC **knowhow_attribute);
359
0 commit comments