You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
337 B
C

/**
* Visitor function. Visiting is non-recursive. You must call
* GCVisitChildren() on the object argument if you wish to explore the entire
* graph.
*/
typedef void (*visit_function_t)(id object, void *context, BOOL isWeak);
void GCVisitChildren(id object, visit_function_t function, void *argument,
BOOL visitWeakChildren);