Diff for /freem/src/frmgbl.c between versions 1.10 and 1.12

version 1.10, 2025/04/10 01:24:38 version 1.12, 2025/04/16 17:36:12
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.12  2025/04/16 17:36:12  snw
    *   Add FreeBSD shm cleanup script
    *
    *   Revision 1.11  2025/04/13 04:22:43  snw
    *   Fix snprintf calls
    *
  *   Revision 1.10  2025/04/10 01:24:38  snw   *   Revision 1.10  2025/04/10 01:24:38  snw
  *   Remove C++ style comments   *   Remove C++ style comments
  *   *
Line 614  short   sigint_in_for = FALSE; Line 620  short   sigint_in_for = FALSE;
 short   direct_mode = TRUE;     /* are we in direct mode? */  short   direct_mode = TRUE;     /* are we in direct mode? */
   
 short   extr_types[NESTLEVLS + 1]; /* return types of extrinsic functions */  short   extr_types[NESTLEVLS + 1]; /* return types of extrinsic functions */
 char destructors[MAX_DESTRUCTORS][50];  char destructors[MAX_DESTRUCTORS][OBJ_DSTRSIZE];
 int destructor_ct;  int destructor_ct;
 char private_keys[MAX_PRIVATE_KEYS][255];  char private_keys[MAX_PRIVATE_KEYS][255];
   
Line 647  short ipc_pending = 0;   /* 1 if an inco Line 653  short ipc_pending = 0;   /* 1 if an inco
 int strict_mode = 0;  int strict_mode = 0;
   
 short first_process = FALSE;  short first_process = FALSE;
 size_t shm_init_size = 16777216;  #if defined(__FreeBSD__)
    size_t shm_init_size = 4194304;
   #else
    size_t shm_init_size = 16777216;
   #endif
 short inrpt_after_async = FALSE;  short inrpt_after_async = FALSE;
   
 void unnew (void)  void unnew (void)

Removed from v.1.10  
changed lines
  Added in v.1.12


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>