From: garde Date: Wed, 6 Feb 1985 16:56:41 +0000 (+0000) Subject: monitor calls open, close and ioctl removed. X-Git-Tag: release-5-5~5663 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=20986fd6ea3496a4f4e25bd07ed8d924ab240f74;p=ack.git monitor calls open, close and ioctl removed. --- diff --git a/mach/i80/libmon/mon.s b/mach/i80/libmon/mon.s index 28f908972..2e8e5dc26 100644 --- a/mach/i80/libmon/mon.s +++ b/mach/i80/libmon/mon.s @@ -7,9 +7,6 @@ ! number 1: exit ! number 3: read ! number 4: write -! number 5: open -! number 6: close -! number 54: ioctl ! If called with a number of a call that is not implemented, ! a trap is generated. @@ -27,12 +24,6 @@ jz monread ! is it a read? cpi 4 jz monwrite ! is it a write? - cpi 5 - jz monopen ! is it an open? - cpi 6 - jz monclose ! is it a close? - cpi 54 - jz monioctl ! is it an ioctl? jmp ebadmon ! trap monexit: @@ -78,25 +69,6 @@ monwrite: 2: push d ! no error jmp monret -monopen: - pop h ! pointer to string - lxi h,0 - xthl ! pop flag and push file descriptor - push h ! error code - jmp monret - -monclose: - lxi h,0 - xthl ! pop file descriptor and push error code - jmp monret - -monioctl: - pop h ! file descriptor - pop h ! request - lxi h,0 - xthl ! remove argp and push error code - jmp monret - monret: lhld .bcreg mov b,h