UnixOperatingSystem.st
changeset 3575 39723f691a0e
parent 3571 9090dc66a427
child 3595 5fbfb33cd373
equal deleted inserted replaced
3574:9051e0df0d11 3575:39723f691a0e
  5872 #ifdef PTY_TEMPL
  5872 #ifdef PTY_TEMPL
  5873 #   include <grp.h>
  5873 #   include <grp.h>
  5874 
  5874 
  5875     static char line[] = PTY_TEMPL;
  5875     static char line[] = PTY_TEMPL;
  5876 
  5876 
  5877     register const char *cp1, *cp2;
  5877     register CONST char *cp1, *cp2;
  5878     int _fdM = -1, _fdS = -1, ttygid;
  5878     int _fdM = -1, _fdS = -1, ttygid;
  5879     struct group *gr;
  5879     struct group *gr;
  5880 
  5880 
  5881     if ((gr = getgrnam("tty")) != NULL)
  5881     if ((gr = getgrnam("tty")) != NULL)
  5882 	ttygid = gr->gr_gid;
  5882 	ttygid = gr->gr_gid;
  8479 ! !
  8479 ! !
  8480 
  8480 
  8481 !UnixOperatingSystem class methodsFor:'documentation'!
  8481 !UnixOperatingSystem class methodsFor:'documentation'!
  8482 
  8482 
  8483 version
  8483 version
  8484     ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.25 1998-06-15 13:43:04 cg Exp $'
  8484     ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.26 1998-06-15 14:48:28 cg Exp $'
  8485 ! !
  8485 ! !
  8486 UnixOperatingSystem initialize!
  8486 UnixOperatingSystem initialize!