X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=variables.lisp;h=a4df081547ef0e7268de409a37500940d516bda9;hb=06c0d21709291418242c059d53956f4b164977ea;hp=d9f4f1ee87e53fc02e58130e9eb5e69591ca0611;hpb=fb31277c5dace4cc9cf731c42e5034ace9dc31f2;p=cl-modlisp.git diff --git a/variables.lisp b/variables.lisp index d9f4f1e..a4df081 100644 --- a/variables.lisp +++ b/variables.lisp @@ -7,17 +7,11 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: variables.lisp,v 1.4 2003/07/05 22:54:00 kevin Exp $ +;;;; $Id: variables.lisp,v 1.7 2003/07/08 16:12:03 kevin Exp $ ;;;; ************************************************************************* (in-package #:modlisp) -(defvar *listener-count* 0 - "used to name listeners") - -(defvar *worker-count* 0 - "used to name workers") - (defconstant +default-apache-port+ 20123 "Default port for listen") @@ -28,23 +22,7 @@ (defvar *number-worker-requests* 0) (defvar *close-apache-socket* t) -(defclass listener () - ((process :initarg process :accessor process) - (socket :initarg socket :accessor socket) - (workers :initform nil :accessor workers - :documentation "list of worker threads"))) - -(defvar *active-listeners* nil - "List of active listeners") - -(defclass worker () - ((listener :initarg :listener :accessor listener :initform nil) - (name :initarg :name :accessor name :initform nil) - (func :initarg :func :accessor func :initform nil) - (function-args :initarg :function-args :accessor function-args - :initform nil) - (socket :initarg :socket :accessor socket :initform nil) - (thread-fun :initarg :thread-fun :accessor thread-fun :initform nil) - (process :initarg :process :accessor process :initform nil))) + +