X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/8958fa4a2ce3f4163fe4798e6d29da534f96075a..a6e339e1c2365467ed29c660dd979ccf05442d65:/glib/gobject.lisp diff --git a/glib/gobject.lisp b/glib/gobject.lisp index 40ef3ea..2a91c0c 100644 --- a/glib/gobject.lisp +++ b/glib/gobject.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gobject.lisp,v 1.43 2006-02-05 15:38:57 espen Exp $ +;; $Id: gobject.lisp,v 1.44 2006-02-06 11:34:05 espen Exp $ (in-package "GLIB") @@ -28,6 +28,7 @@ (in-package "GLIB") ;;;; Metaclass used for subclasses of gobject (eval-when (:compile-toplevel :load-toplevel :execute) +;; (push :debug-ref-counting *features*) (defclass gobject-class (ginstance-class) ((instance-slots-p :initform nil :documentation "Non NIL if the class has slots with instance allocation"))) @@ -203,10 +204,18 @@ (defmethod shared-initialize :after ((class gobject-class) names &rest initargs) (eval-when (:compile-toplevel :load-toplevel :execute) (defclass gobject (ginstance) - () + (#+debug-ref-counting + (ref-count :allocation :alien :type int :reader ref-count)) (:metaclass gobject-class) (:gtype "GObject"))) +#+debug-ref-counting +(defmethod print-object ((instance gobject) stream) + (print-unreadable-object (instance stream :type t :identity nil) + (if (slot-boundp instance 'location) + (format stream "at 0x~X (~D)" (sap-int (foreign-location instance)) (ref-count instance)) + (write-string "at \"unbound\"" stream)))) + (defun initial-add (object function initargs key pkey) (loop