-
Above comment references tf-50b8
Editing the source is also needed in order to get the 4.0 stable 1 version to work, but tf-50b8 works better for me on osx anyway.
Cheers,
2009-07-29 03:12:37 UTC in TinyFugue - MUD client
-
Edit the file: src/malloc.c
change the line that reads:
caddr_t mmalloc_base = NULL;
to read
//caddr_t mmalloc_base = NULL;
save the file, and recompile.
2009-07-29 03:10:49 UTC in TinyFugue - MUD client
-
Sorry just realized the example I gave had a bit of a glaring error. Here's what I really wanted the example to look like:
/hook KEYBINPUT = /qrepeat KEYBINPUTHOOK -1200 1 /dc
where /qrepeat is defined as:
; queued /repeat:
; /qrepeat -
/def qrepeat = \
/eval /kill %%{qrpid_%1} %;\
/eval /repeat %{2} %{3} %{-3} %;\
/eval...
2009-06-16 21:22:37 UTC in TinyFugue - MUD client
-
I'd like to request the addition of a "keyboard input hook". This allows a number of things, for example to disconnect from the mud after X mins of inactivity, regardless of trigger firing or /repeat's running. just /hook KEYBINPUT = /repeat -X 1 /dc. Other examples would include checking the status of and recasting various protection spells etc only when keyboard input is detected. This is...
2009-06-16 15:17:32 UTC in TinyFugue - MUD client
-
Logged In: YES
user_id=193359
Possibly related issue.
I found that the sbml.xsd file in:
sbw-1.0.3/src/modules/MatlabTranslator does not work with
the SBMLValidator. In order to get the validator to work
you must use the sbml.xsd file found in the
modules/Validator/src directory.
Anyhow the error I get when I used the wrong sbml.xsd [from
linux command prompt] looks like this...
2003-02-26 00:11:26 UTC in SBW (Systems Biology Workbench)
-
No idea what this is but anyhow-- functionally everything seems ok to me... even though this exception gets thrown.
Interested parties should note that the provider url, in the above source code should actually read:
String jmsURL = "embedded://"
As a patch to this, and im not sure its correct at all since I cant seem to find source code for the *.core.* classes is to do this in.
2002-10-21 00:58:51 UTC in openjms
-
While using the EmbbededJmsServer, I was getting a NullPointerExecpetion when multiple recievers attmepted to register themselves on a queue
It seems that server.JmsServerSession::isClientEndpointActive() was trying to push a null object down the pipe to ensure its 'alive' but this was throwing a null pointer as later in IntravmJmsSessionStub::onMessage() it was attempting to clone the...
2002-10-21 00:50:48 UTC in openjms
-
Thought the debug output might help.. see below:
-------- cut /paste log file --------
OpenJMS 0.7.2 (build 14)
Exolab Inc. (C) 1999-2002. All rights reserved. www.openjms.org
02:54:05.944 DEBUG [main] - Creating JNDI Server org.exolab.jms.jndi.intravm.IntravmJndiServer
02:54:05.949 INFO [main] - Created an instance of the IntravmJndiServer
02:54:05.950 DEBUG [main] - Created an...
2002-10-17 09:47:28 UTC in openjms
-
Trying to embed openJMS server and I have hit a road block the error eminates from a class for which I cannot find the source code.
Anyhow this is what my application is doing:
***code snip start***
String jmsURL = "localhost";
String jmsContextFactory="org.exolab.jms.jndi.intravm.IntravmJndiInitialContextFactory";
_server = new EmbeddedJmsServer("embed.
2002-10-17 09:40:26 UTC in openjms