Porting stuff.
[lisp] / sys-base.lisp
CommitLineData
861345b4 1;;; -*-lisp-*-
2;;;
3;;; $Id$
4;;;
5;;; Basic system-specific stuff
6;;;
7;;; (c) 2005 Mark Wooding
8;;;
9
10;;;----- Licensing notice ---------------------------------------------------
11;;;
12;;; This program is free software; you can redistribute it and/or modify
13;;; it under the terms of the GNU General Public License as published by
14;;; the Free Software Foundation; either version 2 of the License, or
15;;; (at your option) any later version.
16;;;
17;;; This program is distributed in the hope that it will be useful,
18;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;;; GNU General Public License for more details.
21;;;
22;;; You should have received a copy of the GNU General Public License
23;;; along with this program; if not, write to the Free Software Foundation,
24;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
e5152ebe
MW
26(defpackage #:runlisp
27 (:use #:common-lisp)
28 (:export #:*lisp-interpreter* #:*command-line-strings* #:run))
8a2e8de1 29
861345b4 30(defpackage #:mdw.sys-base
e5152ebe 31 (:use #:common-lisp #:runlisp)
8a2e8de1 32 (:export #:exit #:hard-exit #:*program-name* #:*command-line-strings*)
e5152ebe 33 (:import-from #:runlisp #:*lisp-interpreter* #:*command-line-strings*)
8a2e8de1 34 #+clisp (:import-from #:ext #:exit))
861345b4 35(in-package #:mdw.sys-base)
36
e5152ebe
MW
37(defun hard-exit (&optional (code 0))
38 "Stops the program immediately in its tracks. Does nothing else. Use
39 after fork, for example, to avoid flushing buffers."
40 (declare (type (unsigned-byte 32) code))
41 #+cmu (unix::void-syscall ("_exit" c-call:int) code)
42 #+(or clisp ecl) (ext:quit code))
861345b4 43
e5152ebe 44#-clisp
861345b4 45(defun exit (&optional (code 0))
46 "Polite way to end a program. If running in an interactive Lisp, just
0ff9df03 47 return to the top-level REPL."
e5152ebe
MW
48 (if (boundp '*command-line-strings*)
49 #+(or cmu ecl) (ext:quit code)
861345b4 50 (progn
51 (unless (zerop code)
52 (format t "~&Exiting unsuccessfully with code ~D.~%" code))
53 (abort))))
54
8a2e8de1
MW
55(defvar *program-name*
56 (pathname-name (car *command-line-strings*))
861345b4 57 "A plausible guess at the program's name, stripped of strange extensions.")
58
59;;;----- That's all, folks --------------------------------------------------