Path: utzoo!utgpu!watmath!att!tut.cis.ohio-state.edu!mailrus!csd4.milw.wisc.edu!cs.utexas.edu!uunet!virtech!cpcahil From: cpcahil@virtech.UUCP (Conor P. Cahill) Newsgroups: comp.unix.questions Subject: Re: job priority Message-ID: <962@virtech.UUCP> Date: 8 Aug 89 02:48:25 GMT References: <20533@adm.BRL.MIL> Organization: Virtual Technologies Inc Lines: 13 In article <20533@adm.BRL.MIL>, SIMSN%NUSDISCS.BITNET@cunyvm.cuny.edu writes: > > In Sys V, is there a way you can raise the job's priority after sending > it to the background earlier on? There is no standard system call that can be used to modify the priority, or nice value, of an already existing process. You can, however, using the symbol table in /unix modify the nice value in the process structure (in /dev/kmem, of course) for the indicated process. Unless the permissions are really screwed up on your system, only the superuser will be able to do this. This is not a thing to do lightly since a minor screw up in the location to which you write the desired value can cause a kernel panic. Good luck.