comparison src/systty.h @ 432:3a7e78e1142d r21-2-24

Import from CVS: tag r21-2-24
author cvs
date Mon, 13 Aug 2007 11:29:58 +0200
parents a5df635868b2
children 8de8e3f6228a
comparison
equal deleted inserted replaced
431:a97165e56215 432:3a7e78e1142d
336 /* old (pre-SVR4) USG's don't provide any way to do this. 336 /* old (pre-SVR4) USG's don't provide any way to do this.
337 No big loss -- it just means that ^Z won't work right 337 No big loss -- it just means that ^Z won't work right
338 if we're run from sh. */ 338 if we're run from sh. */
339 # define EMACS_SET_PROCESS_GROUP(pg) 339 # define EMACS_SET_PROCESS_GROUP(pg)
340 #elif defined(__MINGW32__) 340 #elif defined(__MINGW32__)
341 # define EMACS_SEPARATE_PROCESS_GROUP() 341 # define EMACS_SEPARATE_PROCESS_GROUP()
342 #else 342 #else
343 /* Under NeXTstep, a process group of 0 is not the same as specifying 343 /* Under NeXTstep, a process group of 0 is not the same as specifying
344 your own process ID, so we go ahead and specify it explicitly. */ 344 your own process ID, so we go ahead and specify it explicitly. */
345 # define EMACS_SEPARATE_PROCESS_GROUP() setpgrp (0, getpid ()) 345 # define EMACS_SEPARATE_PROCESS_GROUP() setpgrp (0, getpid ())
346 # define EMACS_SET_PROCESS_GROUP(pg) setpgrp (0, pg) 346 # define EMACS_SET_PROCESS_GROUP(pg) setpgrp (0, pg)