This way, it is consistent with the other LibUCW modules.
}
void
-cf_free_context(struct cf_context *cc)
+cf_delete_context(struct cf_context *cc)
{
ASSERT(!cc->is_active);
ASSERT(cc != &cf_default_context);
if (cc) {
cf_switch_context(prev);
- cf_free_context(cc);
+ cf_delete_context(cc);
}
- printf("%08x\n", ip);
-
return 0;
}
* of the context is freed, which includes memory obtained by calls to
* cf_malloc().
**/
-void cf_free_context(struct cf_context *cc);
+void cf_delete_context(struct cf_context *cc);
/**
* Make the given configuration context current and return the previously