Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19442
Modified Files: Tag: desiredata desire.h Log Message: stack decls belong here
Index: desire.h =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/desire.h,v retrieving revision 1.1.2.49.2.30 retrieving revision 1.1.2.49.2.31 diff -C2 -d -r1.1.2.49.2.30 -r1.1.2.49.2.31 *** desire.h 13 Jul 2007 18:57:13 -0000 1.1.2.49.2.30 --- desire.h 15 Jul 2007 05:37:09 -0000 1.1.2.49.2.31 *************** *** 334,336 **** --- 334,346 ---- printf("class=%s)\n",((t_gobj *)self)->_class->c_name->name);
+ #define STACKSIZE 1024 + struct t_call { + t_pd *self; /* receiver */ + t_symbol *s; /* selector */ + /* insert temporary profiling variables here */ + }; + + EXTERN t_call pd_stack[STACKSIZE]; + EXTERN int pd_stackn; + #endif /* __DESIRE_H */