Search found 20 matches

by pTymN
Fri Sep 03, 2010 9:31 am
Forum: Common Lisp
Topic: Is there a simple method for writing traces from multiple sb
Replies: 5
Views: 5597

Is there a simple method for writing traces from multiple sb

Using SBCL, I'm writing a small server and I would like to trace the server thread, but when I use mclide/swank, I do not see any output from the server thread. ? (require 'sb-posix) NIL ? (sb-thread:make-thread (lambda () (format t "hi from the thread"))) #<SB-THREAD:THREAD FINISHED value...
by pTymN
Fri Sep 19, 2008 12:14 pm
Forum: Common Lisp
Topic: Poll: Which Lisp implementations do you use?
Replies: 32
Views: 92652

Re: Poll: Which Lisp implementations do you use?

Am I correct that the main reason that Corman CL is overlooked is due to the instability of it and Win32 only? I've been helping Roger systemmatically identify and flush out some of the remaining GC bugs. The fact that Corman is so trivially embeddable into a Win32 app, has decent performance, and a...
by pTymN
Fri Aug 08, 2008 8:34 am
Forum: Common Lisp
Topic: How to compile SBCL as a DLL
Replies: 2
Views: 9505

How to compile SBCL as a DLL

Hello, A few days ago, I asked how to embed SBCL into a C++ app, and among other things, I was warned that SBCL makes too many assumptions about owning memory, but this cannot be completely true if it is able to load ordinary DLLs, which almost certainly do their own memory management. I'm pretty ne...
by pTymN
Wed Aug 06, 2008 1:54 pm
Forum: Common Lisp
Topic: SBCL 1.0.19 released
Replies: 6
Views: 17729

Re: SBCL 1.0.19 released

The funny thing is I'm not even sure how I got it to compile. I was using MinGW and MSYS from the PS3 sdk installer, but it is definately a Win32 binary that was produced....
by pTymN
Tue Aug 05, 2008 11:18 am
Forum: Common Lisp
Topic: How to embed SBCL in a C++ app?
Replies: 5
Views: 14630

Re: How to embed SBCL in a C++ app?

If anyone has a guide for how to do this, I'd still appreciate it. The C++ app uses a sample framework that comes with the 3d graphics engine, and I really don't feel like opening that can of worms. It seems like it should be easier to compile sbcl as a dll than to manually dig around for everything...
by pTymN
Tue Aug 05, 2008 10:39 am
Forum: Common Lisp
Topic: How to embed SBCL in a C++ app?
Replies: 5
Views: 14630

Re: How to embed SBCL in a C++ app?

The C++ to lisp calls are only for events in an event driven paradigm. So the alternative would be for the C++ to queue up events and the Lisp to poll the events instead of the C++ calling lisp directly when events are generated.
by pTymN
Tue Aug 05, 2008 9:10 am
Forum: Common Lisp
Topic: How to embed SBCL in a C++ app?
Replies: 5
Views: 14630

How to embed SBCL in a C++ app?

Has anyone had experience embedding SBCL in a C++ app? The C++ app has the main(), and I would like to be able to start up or embed SBCL in the C++ app without the use of pipes or other funky cross process mechanisms. I'm looking for a static or DLL link of SBCL into my game. For reference, here's h...
by pTymN
Tue Aug 05, 2008 8:56 am
Forum: Common Lisp
Topic: SBCL 1.0.19 released
Replies: 6
Views: 17729

Re: SBCL 1.0.19 released

http://ptymn.hopto.org/dev/sbcl-1.0.19.msi

Here's the installer for Win32. :)
by pTymN
Tue Jul 22, 2008 6:58 am
Forum: Common Lisp
Topic: sxhash and *package* interaction
Replies: 6
Views: 12858

Re: sxhash and *package* interaction

Turns out, Corman CL has a bug in sxhash where if you call (gc 2), you'll get different return values from sxhash. His hash table implementations had a hook that would trigger a rehash after a GC.