A few more DEBUG fprintf(stderr)s at construction time

This commit is contained in:
Paul LeoNerd Evans 2011-09-05 14:14:09 +01:00
parent 3fb6f398e9
commit 3008ed29d1
1 changed files with 12 additions and 1 deletions

View File

@ -256,7 +256,7 @@ static TermKey *termkey_new_full(int fd, int flags, size_t buffsize, int waittim
continue; continue;
#ifdef DEBUG #ifdef DEBUG
fprintf(stderr, "Loading the %s driver\n", drivers[i]->name); fprintf(stderr, "Loading the %s driver...\n", drivers[i]->name);
#endif #endif
struct TermKeyDriverNode *thisdrv = malloc(sizeof(*thisdrv)); struct TermKeyDriverNode *thisdrv = malloc(sizeof(*thisdrv));
@ -273,6 +273,10 @@ static TermKey *termkey_new_full(int fd, int flags, size_t buffsize, int waittim
tail->next = thisdrv; tail->next = thisdrv;
tail = thisdrv; tail = thisdrv;
#ifdef DEBUG
fprintf(stderr, "Loaded %s driver\n", drivers[i]->name);
#endif
} }
if(!tk->drivers) { if(!tk->drivers) {
@ -304,6 +308,9 @@ static TermKey *termkey_new_full(int fd, int flags, size_t buffsize, int waittim
#endif #endif
} }
#ifdef DEBUG
fprintf(stderr, "Setting termios(3) flags\n");
#endif
tcsetattr(fd, TCSANOW, &termios); tcsetattr(fd, TCSANOW, &termios);
} }
} }
@ -313,6 +320,10 @@ static TermKey *termkey_new_full(int fd, int flags, size_t buffsize, int waittim
if(p->driver->start_driver) if(p->driver->start_driver)
(*p->driver->start_driver)(tk, p->info); (*p->driver->start_driver)(tk, p->info);
#ifdef DEBUG
fprintf(stderr, "Drivers started; termkey instance %p is ready\n", tk);
#endif
return tk; return tk;
abort_free_drivers: abort_free_drivers: