[PD-cvs] pd/src desire.c,1.1.2.47,1.1.2.48

Mathieu Bouchard matju at users.sourceforge.net
Wed Nov 2 13:03:43 CET 2005


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

Modified Files:
      Tag: devel_0_39
	desire.c 
Log Message:
mv wb_delete delete


Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.47
retrieving revision 1.1.2.48
diff -C2 -d -r1.1.2.47 -r1.1.2.48
*** desire.c	31 Oct 2005 11:36:49 -0000	1.1.2.47
--- desire.c	2 Nov 2005 12:03:41 -0000	1.1.2.48
***************
*** 120,124 ****
  	self->o[(self->start+self->len)%QUEUE_SIZE] = stuff;
  	self->len++;
! 	post("queue_put: items in queue: %d",self->len);
  }
  
--- 120,124 ----
  	self->o[(self->start+self->len)%QUEUE_SIZE] = stuff;
  	self->len++;
! 	//post("queue_put: items in queue: %d",self->len);
  }
  
***************
*** 127,131 ****
  	self->start = (self->start+1)%QUEUE_SIZE;
  	self->len--;
! 	post("queue_get: items in queue: %d",self->len);
  	return r;
  }
--- 127,131 ----
  	self->start = (self->start+1)%QUEUE_SIZE;
  	self->len--;
! 	//post("queue_get: items in queue: %d",self->len);
  	return r;
  }
***************
*** 153,161 ****
  void manager_call (void *foo) {
  	t_manager *self = (t_manager *)foo;
! 	if (self->q->len) post("manager_call: %d notices",self->q->len);
  	while (!queue_empty(self->q)) {
  		t_gobj *o = (t_gobj *)queue_get(self->q);
  		if (!o->g_adix->dirtyc) continue;
! 		post("UPLOADING a %s",o->g_pd->c_name->s_name);
  		pd_upload(o);
  		o->g_adix->dirtyc = 0;
--- 153,161 ----
  void manager_call (void *foo) {
  	t_manager *self = (t_manager *)foo;
! 	//if (self->q->len) post("manager_call: %d notices",self->q->len);
  	while (!queue_empty(self->q)) {
  		t_gobj *o = (t_gobj *)queue_get(self->q);
  		if (!o->g_adix->dirtyc) continue;
! 		//post("UPLOADING a %s",o->g_pd->c_name->s_name);
  		pd_upload(o);
  		o->g_adix->dirtyc = 0;
***************
*** 166,170 ****
  void manager_notice (t_gobj *self_, t_gobj *origin, int argc, t_atom *argv) {
  	t_manager *self = (t_manager *)self_;
! 	post("manager_notice(%p,%p,%d,...)",self,origin,argc);
  	t_appendix *a = (t_appendix *)origin->g_adix;
  	if (!a->dirtyc) {
--- 166,170 ----
  void manager_notice (t_gobj *self_, t_gobj *origin, int argc, t_atom *argv) {
  	t_manager *self = (t_manager *)self_;
! 	//post("manager_notice(%p,%p,%d,...)",self,origin,argc);
  	t_appendix *a = (t_appendix *)origin->g_adix;
  	if (!a->dirtyc) {
***************
*** 12067,12071 ****
  //	what is this function supposed to be for anyway?
  }
! static void text_delete(t_gobj *z, t_glist *glist) {sys_mgui(z,"wb_delete","");}
  
  /* return true if the text box should be drawn. We don't show object boxes inside graphs. */
--- 12067,12071 ----
  //	what is this function supposed to be for anyway?
  }
! static void text_delete(t_gobj *z, t_glist *glist) {sys_mgui(z,"delete","");}
  
  /* return true if the text box should be drawn. We don't show object boxes inside graphs. */





More information about the Pd-cvs mailing list