StackAlloc align v2
Posted to
tcl
by miguel at Tue Mar 18 16:08:42 GMT 2008
view raw
static inline int
OFFSET(
void *ptr)
{
int mask, i;
mask = TCL_ALLOCALIGN-1;
ptr++;
for
(i=1; (((intptr_t)ptr) & mask); i++, ptr++) {}
return
i;
}
Comments
Posted by jenglish at Tue Mar 18 16:44:24 GMT 2008
[text]
[code]
No good. Can't do arithmetic on (void *)s.
No good. Can't do arithmetic on (void *)s.
Recent Posts
tcl by oldlaptop
5 days ago
tcl by mookie
7 days ago
tcl by mookie
7 days ago
tcl by mookie
8 days ago
tcl by mookie
8 days ago
junk by bcharder
47 days ago
tcl by egavilan
56 days ago
tcl by Stu
58 days ago
tcl by Stu
58 days ago
tcl by oldlaptop
91 days ago
Submit
New paste
Documentation
From Jabber
Comments
Posted by jenglish at Tue Mar 18 16:44:24 GMT 2008 [text] [code]
No good. Can't do arithmetic on (void *)s.