/* * Copyright (c) 1983 Regents of the University of California. * All rights reserved. * * Redistribution and use in source and binary forms are permitted * provided that this notice is preserved and that due credit is given * to the University of California at Berkeley. The name of the University * may not be used to endorse or promote products derived from this * software without specific prior written permission. This software * is provided ``as is'' without express or implied warranty. */ #ifndef lint static char sccsid[] = "@(#)wwenviron.c 3.19 (Berkeley) 06/21/88"; #endif /* not lint */ #include "ww.h" #include /* * Set up the environment of this process to run in window 'wp'. */ wwenviron(wp) register struct ww *wp; { register i; int pgrp = getpid(); char buf[1024]; if ((i = open("/dev/tty", 0)) < 0) goto bad; if (ioctl(i, TIOCNOTTY, (char *)0) < 0) goto bad; (void) close(i); if ((i = wp->ww_socket) < 0 && (i = open(wp->ww_ttyname, 2)) < 0) goto bad; (void) dup2(i, 0); (void) dup2(i, 1); (void) dup2(i, 2); for (i = wwdtablesize - 1; i > 2; i--) (void) close(i); (void) ioctl(0, TIOCSPGRP, (char *)&pgrp); (void) setpgrp(pgrp, pgrp); /* SIGPIPE is the only one we ignore */ (void) signal(SIGPIPE, SIG_DFL); (void) sigsetmask(0); /* * Two conditions that make destructive setenv ok: * 1. setenv() copies the string, * 2. we've already called tgetent which copies the termcap entry. */ (void) sprintf(buf, "%sco#%d:li#%d:%s", WWT_TERMCAP, wp->ww_w.nc, wp->ww_w.nr, wwwintermcap); (void) setenv("TERMCAP", buf, 1); (void) sprintf(buf, "%d", wp->ww_id + 1); (void) setenv("WINDOW_ID", buf, 1); return 0; bad: wwerrno = WWE_SYS; return -1; }