Posted to tcl by kbk at Tue Oct 27 19:13:43 GMT 2009view raw

  1. fprintf(stderr, "AppendPath called\n");
  2. fprintf(stderr, "head: %p (refcount = %d)\n", head, head->refCount);
  3. if (head->bytes) {
  4. fprintf(stderr, " bytes: %s\n", head->bytes);
  5. }
  6. if (head->typePtr) {
  7. fprintf(stderr, " type: %s\n", head->typePtr->name);
  8. }
  9. fprintf(stderr, "tail: %p (refcount = %d)\n", tail, tail->refCount);
  10. if (tail->bytes) {
  11. fprintf(stderr, " bytes: %s\n", head->bytes);
  12. }
  13. if (tail->typePtr) {
  14. fprintf(stderr, " type: %s\n", head->typePtr->name);
  15. }
  16. fflush(stderr);