On Fri, 28 Jun 2002, Justin Erenkrantz wrote: > p->alloc > and > #define apr_palloc(...) p->alloc
None, but that's not what we were doing with SMS.
> to the fact that we used to have a function like this:
>
> apr_palloc()
> {
> return p->alloc();
> }
Yeah, but it did even more. It was more like:
apr_sms_alloc(sms, size)
{
/* ... do a bunch of stuff here ... */
rv = sms->type->alloc(sms, size);
/* ... do some more stuff ... */
return rv;
}
