[PD-cvs] pd/src kernel.c,1.1.2.43,1.1.2.44

Mathieu Bouchard matju at users.sourceforge.net
Thu Jun 28 05:07:33 CEST 2007


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10547

Modified Files:
      Tag: desiredata
	kernel.c 
Log Message:
remove object_table debug


Index: kernel.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/kernel.c,v
retrieving revision 1.1.2.43
retrieving revision 1.1.2.44
diff -C2 -d -r1.1.2.43 -r1.1.2.44
*** kernel.c	28 Jun 2007 02:17:23 -0000	1.1.2.43
--- kernel.c	28 Jun 2007 03:07:31 -0000	1.1.2.44
***************
*** 300,304 ****
      t_pd *x = (t_pd *)getbytes(c->size);
      x->_class = c;
!     fprintf(stderr,"object_table = %p\n",object_table);
      hash_set(object_table,x,(void*)1);
      if (c->gobj) ((t_gobj *)x)->g_adix = appendix_new((t_gobj *)x);
--- 300,304 ----
      t_pd *x = (t_pd *)getbytes(c->size);
      x->_class = c;
!     //fprintf(stderr,"object_table = %p\n",object_table);
      hash_set(object_table,x,(void*)1);
      if (c->gobj) ((t_gobj *)x)->g_adix = appendix_new((t_gobj *)x);
***************
*** 2558,2562 ****
  void pd_init() {
      object_table = hash_new(127);
!     fprintf(stderr,"object_table = %p\n",object_table);
      bindlist_class = class_new(gensym("bindlist"), 0, 0, sizeof(t_bindlist), CLASS_PD, 0);
      class_addbang(bindlist_class, (t_method)bindlist_bang);
--- 2558,2562 ----
  void pd_init() {
      object_table = hash_new(127);
!     //fprintf(stderr,"object_table = %p\n",object_table);
      bindlist_class = class_new(gensym("bindlist"), 0, 0, sizeof(t_bindlist), CLASS_PD, 0);
      class_addbang(bindlist_class, (t_method)bindlist_bang);





More information about the Pd-cvs mailing list