--- freem/src/service.c 2025/02/28 20:06:07 1.4 +++ freem/src/service.c 2025/03/24 01:52:30 1.8 @@ -1,24 +1,12 @@ /* - * * - * * * - * * * - * *************** - * * * * * - * * MUMPS * - * * * * * - * *************** - * * * - * * * - * * - * - * service.c + * $Id: service.c,v 1.8 2025/03/24 01:52:30 snw Exp $ * terminal and sequential I/O handling, * file and global locking * * - * Author: Serena Willis + * Author: Serena Willis * Copyright (C) 1998 MUG Deutschland - * Copyright (C) 2020 Coherent Logic Development LLC + * Copyright (C) 2020, 2025 Coherent Logic Development LLC * * * This file is part of FreeM. @@ -36,6 +24,16 @@ * You should have received a copy of the GNU Affero Public License * along with FreeM. If not, see . * + * $Log: service.c,v $ + * Revision 1.8 2025/03/24 01:52:30 snw + * Work around some OS/2 incompatibilities in set_break and set_zbreak + * + * Revision 1.7 2025/03/09 19:50:47 snw + * Second phase of REUSE compliance and header reformat + * + * + * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC + * SPDX-License-Identifier: AGPL-3.0-or-later **/ #include @@ -65,9 +63,7 @@ #include "events.h" long int tell (); -unsigned alarm (); -void ris (); - +void ris (struct vtstyp *scr); #ifdef SCO int scosgr (short att, short bwflag); @@ -4438,6 +4434,7 @@ void set_io (short action) /* DEL = UNIX quit */ void set_break (short break_char) { +#if !defined(__OS2__) struct termio arg; ioctl (0, TCGETA, &arg); @@ -4445,7 +4442,7 @@ void set_break (short break_char) arg.c_cc[VINTR] = break_char; /* interrupt = CTRL/C */ ioctl (0, TCSETA, &arg); - +#endif return; } /* end of set_break() */ @@ -4456,6 +4453,7 @@ void set_break (short break_char) /* DEL = UNIX quit */ void set_zbreak (short quit_char) { +#if !defined(__OS2__) struct termio arg; ioctl (0, TCGETA, &arg); @@ -4463,7 +4461,7 @@ void set_zbreak (short quit_char) arg.c_cc[VQUIT] = quit_char; ioctl (0, TCSETA, &arg); - +#endif return; } /* end of set_zbreak() */