Differences From Artifact [aaa11e134f]:
- File src/fshell.c — part of check-in [03b6869856] at 2016-11-16 19:29:21 on branch trunk — Enable linenoise multiline editing so long commands and queries may be seen all at once therefore highlighted and copied from xterms (user: andygoth size: 3512) [more...]
To Artifact [9e7d580ff9]:
- File src/fshell.c — part of check-in [07a5a2118e] at 2019-08-21 16:55:49 on branch trunk — Fix the "shell" command so that it avoids invoking the atexit() handler more than once. (user: drh size: 3519) [more...]
| ︙ | |||
107 108 109 110 111 112 113 | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | - + |
printf("could not fork a child process to handle the command\n");
fflush(stdout);
continue;
}
if( childPid==0 ){
/* This is the child process */
int main(int, char**);
|
| ︙ |