version 1.17, 2025/05/05 04:46:35
|
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 |
|
* Fix macOS port |
|
* |
* Revision 1.17 2025/05/05 04:46:35 snw |
* Revision 1.17 2025/05/05 04:46:35 snw |
* Documentation fixes; make FreeM more standards compliant |
* Documentation fixes; make FreeM more standards compliant |
* |
* |
Line 673 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 */ |
size_t shm_init_size = 16777216; |
|
#endif |
|
short inrpt_after_async = FALSE; |
short inrpt_after_async = FALSE; |
|
|
void unnew (void) |
void unnew (void) |