Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!tut.cis.ohio-state.edu!ucbvax!CLEMSON.BITNET!JAL2 From: JAL2@CLEMSON.BITNET (803 James Loser 654-1284) Newsgroups: comp.lang.asm370 Subject: re: interrupt level pgming Message-ID: <9007241237.AA29070@ucbvax.Berkeley.EDU> Date: 24 Jul 90 12:32:00 GMT Sender: daemon@ucbvax.BERKELEY.EDU Reply-To: IBM 370 Assembly Programming Discussion List Distribution: inet Organization: The Internet Lines: 8 Use a scheduler to manage your task. When the interupt occurs, your FLIH should save the state of who is getting stepped on and then service the interrupt. When the interrupt is finished, control is given to the scheduler (or dispatcher as some people prefer) which decides who still needs to run and passes control to that process. When a process finishes, control is again returned to the dispatcher which again decides who who needs to run ..... Have fun.