Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix the build on unix. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
88240d4d4a3bea69f5c9d42dda8e1d50 |
| User & Date: | drh 2018-08-08 02:21:00.631 |
Context
|
2018-08-08
| ||
| 09:21 | Update internal Unicode character tables, used in regular expression handling, from version 10.0 to 11.0. ... (check-in: 1aff43a74a user: jan.nijtmans tags: trunk) | |
| 02:21 | Fix the build on unix. ... (check-in: 88240d4d4a user: drh tags: trunk) | |
| 02:15 | More enhancements to backoffice diagnostics. ... (check-in: 864a6f3922 user: mistachkin tags: trunk) | |
Changes
Changes to src/backoffice.c.
| ︙ | ︙ | |||
74 75 76 77 78 79 80 81 82 83 84 85 86 87 | # include <wchar.h> # endif # define GETPID (int)GetCurrentProcessId #else # include <unistd.h> # include <sys/types.h> # include <signal.h> # define GETPID getpid #endif /* ** The BKOFCE_LEASE_TIME is the amount of time for which a single backoffice ** processing run is valid. Each backoffice run monopolizes the lease for ** at least this amount of time. Hopefully all backoffice processing is | > | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | # include <wchar.h> # endif # define GETPID (int)GetCurrentProcessId #else # include <unistd.h> # include <sys/types.h> # include <signal.h> # include <errno.h> # define GETPID getpid #endif /* ** The BKOFCE_LEASE_TIME is the amount of time for which a single backoffice ** processing run is valid. Each backoffice run monopolizes the lease for ** at least this amount of time. Hopefully all backoffice processing is |
| ︙ | ︙ |