Fixes for 0MQ 2.0.7.
[cl-cluster.git] / package.lisp
blob297a401244832842bdb529dced203be78ced3299
1 ;; Copyright 2009 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is a part of CL-Cluster
4 ;;
5 ;; CL-Cluster is free software: you can redistribute it and/or modify
6 ;; it under the terms of the GNU General Public License as published by
7 ;; the Free Software Foundation, either version 3 of the License, or
8 ;; (at your option) any later version.
9 ;;
10 ;; CL-Cluster is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ;; GNU General Public License for more details.
15 ;; You should have received a copy of the GNU General Public License
16 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
18 (defpackage #:cl-cluster
19 (:use :cl)
20 (:export
21 ;; ;; variables
22 ;; #:*ping*
23 ;; #:*ping-params*
24 ;; #:*ssh*
25 ;; #:*lisp-slave*
26 ;; #:*lisp-user*
28 ;; class
29 :node
30 :node-ssh
31 :node-zmq
33 ;; functions
34 :node-name
35 :node-alive-p
36 :node-connect
37 :node-disconnect
38 :node-send
39 :node-recv
40 :node-flush ; ??
41 :node-exec
43 :node-lock
45 ;; macroses
46 :with-remote
47 :rplet))