version 1.18, 2025/05/16 04:42:02
|
version 1.19, 2025/05/16 13:22:58
|
Line 24
|
Line 24
|
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* along with FreeM. If not, see <https://www.gnu.org/licenses/>. |
* |
* |
* $Log$ |
* $Log$ |
|
* Revision 1.19 2025/05/16 13:22:58 snw |
|
* Bump version to account for shared memory changes |
|
* |
* Revision 1.18 2025/05/16 04:42:02 snw |
* Revision 1.18 2025/05/16 04:42:02 snw |
* Fix macOS port |
* Fix macOS port |
* |
* |
Line 676 short debug_mode = FALSE;
|
Line 679 short debug_mode = FALSE;
|
int lasterr[NESTLEVLS + 1]; |
int lasterr[NESTLEVLS + 1]; |
|
|
short first_process = FALSE; |
short first_process = FALSE; |
#if defined(__FreeBSD__) |
size_t shm_init_size = 16777216; /* initial size of SysV shared memory segment (16M + overhead); |
size_t shm_init_size = 4194304; |
requires a kernel shmmax (or equivalent) parameter of at least |
#else |
17002496 */ |
# if !defined(__APPLE__) |
|
size_t shm_init_size = 16777216; |
|
# else |
|
size_t shm_init_size = 2048576; |
|
#endif |
|
#endif |
|
short inrpt_after_async = FALSE; |
short inrpt_after_async = FALSE; |
|
|
void unnew (void) |
void unnew (void) |