#0 0x00000000004028fa in var_init () at cmatrix.c:198 193: for (j = 0; j <= COLS - 1; j += 2) { 194: /* Set up spaces[] array of how many spaces to skip */ 195: spaces[j] = (int) rand() % LINES + 1; 196: 197: /* And length of the stream */ 198: length[j] = (int) rand() % (LINES - 3) + 3; 199: 200: /* Sentinel value for creation of new objects */ 201: matrix[1][j].val = ' '; 202: 203: /* And set updates[] array for update speed. */ #1 0x00000000004029fa in handle_sigwinch (s=) at cmatrix.c:237 232: if (wresize(stdscr, LINES, COLS) == ERR) 233: c_die("Cannot resize window!"); 234: #endif /* HAVE_WRESIZE */ 235: #endif /* HAVE_RESIZETERM */ 236: 237: var_init(); 238: /* Do these b/c width may have changed... */ 239: clear(); 240: refresh(); 241: 242: } #2 #3 0x00007f4ff88d6d00 in __nanosleep_nocancel () at ../sysdeps/unix/syscall-template.S:81 [Error: syscall-template.S was not found in source tree] #4 0x00007f4ff8be6168 in napms () from /tmp/apport_sandbox_FFFYhf/lib/x86_64-linux-gnu/libtinfo.so.5 #5 0x000000000040196e in main (argc=, argv=) at cmatrix.c:632 627: } 628: } 629: } 630: refresh(); 631: sigprocmask(SIG_UNBLOCK, &sigs, NULL); 632: napms(update * 10); 633: 634: } 635: 636: syscmd = nmalloc(sizeof (char *) * (strlen(oldtermname) + 15)); 637: sprintf(syscmd, "putenv TERM=%s", oldtermname);