-
I've posted an issue I had with netclient's META.in file:
http://sourceforge.net/mailarchive/message.php?msg_name=49AAFDA6.1030208%40citycable.ch
In the toplevel,
#use "topfind";;
#thread;;
#require "netclient";;
does not work.
But doing #require "netsys" and then #require "netclient" works out fine.
Replacing netclient's META.in by
version = "@VERSION@"
requires =...
2009-08-23 11:41:33 UTC by yziquel
-
The Uq_engines.Receiver_attn exception is not declared in the uq_engines.mli.
This means that is not possible to compile code that pattern-matches against this exception.
This means that any custom handler that we attach to the event_system of this receiver will not be able to cope with Receiver_attn exceptions.
2009-08-19 21:45:05 UTC by yziquel
-
Hello,
i've coded aforesaid idea and it seem's broken.
i got next messages in log:
admin message to contaner: test_msg
process called
receive_admin_message: Exception Sys_error("Broken pipe"
for code:
class my_hooks =
...
method receive_admin_message container name args =
let s = "admin message to contaner: " ^ name in
container#log `Info s;...
2009-04-03 07:48:55 UTC by mryau
-
Hello,
I want to write multi process service with asynchronous processor for clients whom just creates connection, listen it, and don't send any packets.
Is following right things to do:
- set inactivity_timeout to 0 for dynamic workload manager
- #process sends message and calls when_done
- from #receive_message i must call process() with descriptors found by...
2009-04-02 18:44:23 UTC by mryau
-
I've been working with my own mmap bindings and have some thoughts/ideas/codes if anybody is interested at some point.
2008-07-25 04:01:09 UTC by nobody
-
I'm trying to use the Netshm module on Macos X 10.4.
Unfortunately, as soon as I try to Netshm.manage the shared memory region, I get a
Fatal error: exception Sys_error("Illegal seek")
This is from the bigarray memmap code which does an lseek to find the end of the file and hence the size. Perhaps the file descriptors are seekable on Linux, but apparently not on OSX and certainly this...
2008-07-22 20:25:46 UTC by nobody
-
When try to connect to some unlistened address, error occured. State is_error is never called, and 100% CPU loading.
OS: linux, Fedora 8
let _ =
Unixqueue_util.set_debug_mode true;
let poll_set = Netsys_pollset_posix.poll_based_pollset 10 in
let event_queue = Unixqueue2.pollset_event_system poll_set in
let caddr = `Socket (
(
`Sock_inet_byname...
2007-12-10 14:54:05 UTC by nobody
-
Unfortunately, I could not find an explicit and noticeable link to the project downloads on the front page: http://ocamlnet.sourceforge.net does not contain a link to the http://sourceforge.net/projects/ocamlnet.
2007-07-24 06:12:10 UTC by anyakin
-
When compiling ocamlnet 2.2.7 under OpenSolaris, during the compilation of src/rpc-auth-dh/rpc_key_service.ml, the symbol tirpc_connector could not be found.
I used the GODI package with no special options enabled.
I was able, as a temporary workaround, to disable the --with-rpc-auth-dh option of the configure script, after which the package compiled normally.
2007-05-16 10:47:37 UTC by semprini
-
This was a Caml bug, solved in CVS : http://caml.inria.fr/mantis/view.php?id=4216
I didn't check. My mistake.
2007-03-05 00:52:24 UTC by mrlapinot