return to 'normal'; $brkthru data goes straight to the terminal */
| 436 | /* return to 'normal'; $brkthru data goes straight to the terminal |
| 437 | */ |
| 438 | unsigned long |
| 439 | disable_broadcast_trapping(void) /* called by settty() */ |
| 440 | { |
| 441 | unsigned long sts = 1; |
| 442 | |
| 443 | if (broadcasts >= 0) { |
| 444 | /* disable trapping; releases associated MBX so that SPAWN can work */ |
| 445 | sts = smg$disable_broadcast_trapping(&pasteboard_id); |
| 446 | if (!vms_ok(sts)) |
| 447 | errno = EVMSERR, vaxc$errno = sts; |
| 448 | flush_broadcasts(); /* don't hold on to any buffered ones */ |
| 449 | } |
| 450 | return sts; |
| 451 | } |
| 452 | |
| 453 | #else /* MAIL */ |
| 454 |
no test coverage detected