globals.lisp 517 B

1234567891011121314151617
  1. (in-package :hurd-translator)
  2. (defvar *translator* nil
  3. "Variable used to represent the currently used translator.")
  4. (defconstant +auth-server+ (getauth) "Port to the current authentication server.")
  5. (unless (port-valid-p +auth-server+)
  6. (error "Could not get a valid port name to the authentication server"))
  7. (defconstant +exec-server+ (file-name-lookup +servers-exec+) "Port to the current exec server.")
  8. (unless (port-valid-p +exec-server+)
  9. (error "Could not get a valid port name to the exec server"))