Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!swrinde!sdd.hp.com!hplabs!hpda!hpcupt1!decot From: decot@hpcupt1.cup.hp.com (Dave Decot) Newsgroups: comp.unix.programmer Subject: Re: Is this a possible bug in SunOS setpgrp() ? Message-ID: <68940002@hpcupt1.cup.hp.com> Date: 4 Jun 91 00:52:36 GMT References: <1991May21.022214.1189@sserve.cc.adfa.oz.au> Organization: Hewlett Packard, Cupertino Lines: 10 Caution: BSD-derived systems such as SunOS and System V-derived systems (such as SunOS /-:) have different semantics for the function setpgrp(). In fact, the BSD version has two arguments, whereas the System V version has no arguments. Check your documentation carefully. On POSIX systems, use setpgid() or setsid() as appropriate to your situation. Dave