solaris equivalent of kill -16 in linux

i am running a process in solaris 9(console) . i know its pid . To halt the process i have given "kill -16 pidvalue" . This halts the process . Later when i gave the same command (ie . kill -16 pidvalue )it resumes (continues)the process .

While giving the same command ( ie . kill -16 pidvalue ) in Linux the process corresponding to the pid value gets permanantly killed ( ie the process becomes nonexistant ) , so next time when i am giving the command (kill -16 pidvalue) in Linux i get an error message on console which says " process is nonexistant " .

So can u suggest the appropriate numeric value or alphabet which should follow kill to halt the process in Linux. In a way i am looking for "solaris equivalent of kill -16 in linux ".

[782 byte] By [surajit2.da] at [2007-11-27 0:52:00]
# 1
kill -STOPkill -CONTshould work on both.I don't know why -16 (USR1) would work on Solaris 9.-- Darren
Darren_Dunhama at 2007-7-11 23:23:13 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...
# 2
you could also use the pstop and prun commands, rather than kill -CONT/-STOP .7/M.
mAbrantea at 2007-7-11 23:23:13 > top of Java-index,Solaris Operating System,Solaris Essentials - General Technical Questions...