Displaying 1 result from an estimated 1 matches for "xnamew".
Did you mean:
xname
2007 Nov 16
0
Symbian s60v3 port (1/2 working?)
...not seem to go high enough to cover all the static
buffers, maybe there is also some fixed size limit to a single stack
frame on arm4/symbian or something funky. As the replacement for fork()
uses pthreads this also makes a clean replacement for the following more
of a challenge
void foo()
{
char xnamew[MAXPATHLEN];
...
I'm thinking perhaps some sort of nasty macro like
DECLARE_STATIC_BUFFER(xnamew,MAXPATHLEN)
which can be substituted to maintain a single static buffer per
function, per thread on symbian and just do the above code on a
non-symbian build.
-------------- next part -----------...