Differences From Artifact [b2ca46105d]:
- File src/popen.c — part of check-in [fc3d9f52ee] at 2015-04-27 19:27:59 on branch trunk — Remove unnecessary end-of-line spacing (user: jan.nijtmans size: 6362) [more...]
To Artifact [44d0236d6f]:
- File src/popen.c — part of check-in [3f5ab71744] at 2018-07-15 19:56:20 on branch trunk — Clarify the difference between fossil_fatal() and fossil_panic(). The fossil_panic() interface puts a message on the error log when generating webpages. Otherwise the two routines are identical. Convert some fossil_fatal() calls into fossil_panic() where appropriate. The goal here is to limit messages on the error log to things that require attention from the system administrator, or represent bugs. (user: drh size: 6362) [more...]
| ︙ | ︙ | |||
23 24 25 26 27 28 29 |
#ifdef _WIN32
#include <windows.h>
#include <fcntl.h>
/*
** Print a fatal error and quit.
*/
static void win32_fatal_error(const char *zMsg){
| | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
#ifdef _WIN32
#include <windows.h>
#include <fcntl.h>
/*
** Print a fatal error and quit.
*/
static void win32_fatal_error(const char *zMsg){
fossil_panic("%s", zMsg);
}
#else
#include <signal.h>
#include <sys/wait.h>
#endif
/*
|
| ︙ | ︙ |