Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8557
Modified Files: Tag: devel_0_39 g_array.c Log Message: upgrading to 0.39-test2, removing array locks
Index: g_array.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/g_array.c,v retrieving revision 1.3.4.4 retrieving revision 1.3.4.4.2.1 diff -C2 -d -r1.3.4.4 -r1.3.4.4.2.1 *** g_array.c 14 Jan 2005 18:34:13 -0000 1.3.4.4 --- g_array.c 22 May 2005 12:39:48 -0000 1.3.4.4.2.1 *************** *** 10,18 **** #include <math.h>
! ! /* Tim Blechmann: garray thread locks: */ ! #ifdef GARRAY_THREAD_LOCK ! #include <pthread.h> ! #endif /* GARRAY_THREAD_LOCK */
/* see also the "plot" object in g_scalar.c which deals with graphing --- 10,16 ---- [...2670 lines suppressed...] - class_addmethod(garray_class, (t_method)garray_write16, gensym("write16"), - A_SYMBOL, A_DEFSYM, A_NULL); class_addmethod(garray_class, (t_method)garray_resize, gensym("resize"), A_FLOAT, A_NULL); --- 1481,1486 ---- *************** *** 1782,1785 **** --- 1495,1506 ---- class_addmethod(garray_class, (t_method)garray_arraydialog, gensym("arraydialog"), A_SYMBOL, A_FLOAT, A_FLOAT, A_FLOAT, A_NULL); + /* jsarlo { */ + class_addmethod(garray_class, (t_method)garray_arrayviewlist_new, + gensym("arrayviewlistnew"), A_NULL); + class_addmethod(garray_class, (t_method)garray_arrayviewlist_fillpage, + gensym("arrayviewlistfillpage"), A_FLOAT, A_NULL); + class_addmethod(garray_class, (t_method)garray_arrayviewlist_close, + gensym("arrayviewclose"), A_NULL); + /* } jsarlo */ class_setsavefn(garray_class, garray_save); }