2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 31.05.1998
|
|
|
|
;
|
|
|
|
; Data for the stdio file stream.
|
|
|
|
;
|
2002-12-03 21:44:58 +00:00
|
|
|
; Be sure to keep the value priority of closeallstreams lower than that of
|
|
|
|
; closeallfiles (which is the low level POSIX counterpart and must be
|
|
|
|
; called after closeallstreams).
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-12-03 21:44:58 +00:00
|
|
|
.export __filetab, _stdin, _stdout, _stderr
|
|
|
|
.destructor closeallstreams, 16
|
|
|
|
.import _close
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2002-12-03 21:44:58 +00:00
|
|
|
.include "fcntl.inc"
|
2002-03-24 13:26:18 +00:00
|
|
|
.include "_file.inc"
|
|
|
|
|
2002-12-03 21:44:58 +00:00
|
|
|
;----------------------------------------------------------------------------
|
|
|
|
; Close all files on exit
|
|
|
|
|
|
|
|
.proc closeallstreams
|
|
|
|
|
|
|
|
ldy #((FOPEN_MAX - 1) * _FILE_size)
|
|
|
|
loop: sty index ; Save the index
|
|
|
|
lda __filetab + _FILE_f_flags,y ; Load file flags
|
|
|
|
and #_FOPEN ; Is it open?
|
|
|
|
beq next ; jump if closed
|
|
|
|
|
|
|
|
; Close this file
|
|
|
|
|
|
|
|
lda __filetab + _FILE_f_fd,y
|
|
|
|
ldx #0
|
|
|
|
jsr _close
|
|
|
|
|
|
|
|
; Next file
|
|
|
|
|
|
|
|
next: lda index
|
|
|
|
sec
|
|
|
|
sbc #_FILE_size
|
|
|
|
tay
|
|
|
|
bcs loop
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
;----------------------------------------------------------------------------
|
|
|
|
; File data
|
|
|
|
|
2000-05-28 13:40:48 +00:00
|
|
|
.data
|
|
|
|
|
|
|
|
__filetab:
|
2002-03-24 13:26:18 +00:00
|
|
|
.byte 0, _FOPEN ; stdin
|
|
|
|
.byte 1, _FOPEN ; stdout
|
|
|
|
.byte 2, _FOPEN ; stderr
|
|
|
|
.repeat FOPEN_MAX - 3
|
|
|
|
.byte 0, _FCLOSED ; free slot
|
|
|
|
.endrepeat
|
|
|
|
|
|
|
|
|
|
|
|
; Standard file descriptors
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_stdin:
|
2002-12-03 21:44:58 +00:00
|
|
|
.word __filetab + (STDIN_FILENO * _FILE_size)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_stdout:
|
2002-12-03 21:44:58 +00:00
|
|
|
.word __filetab + (STDOUT_FILENO * _FILE_size)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_stderr:
|
2002-12-03 21:44:58 +00:00
|
|
|
.word __filetab + (STDERR_FILENO * _FILE_size)
|
|
|
|
|
|
|
|
|
|
|
|
; Temp storage for closeallstreams
|
|
|
|
|
|
|
|
.bss
|
|
|
|
index: .res 1
|
|
|
|
|