caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Gerd Stolpmann <info@gerd-stolpmann.de>
To: Alexsandro Soares <a_s_soares@yahoo.com.br>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] UDP client
Date: Fri, 30 Mar 2007 13:28:09 +0200	[thread overview]
Message-ID: <1175254090.1530.225.camel@localhost.localdomain> (raw)
In-Reply-To: <641576.48378.qm@web51609.mail.re2.yahoo.com>

Well, there is no binding that would allow you to do that (emitting
SIGIO when a datagram arrives). In my opinion it is better not to use
SIGIO for new code, because signals are hard to manage.

So my advice would be: Rewrite it. Use either select or threads or both
for receiving datagrams in parallel with other activities. 

Gerd

Am Donnerstag, den 29.03.2007, 19:23 -0700 schrieb Alexsandro Soares:
> Hi all,
> 
>   I'm working in an UDP client, but I can't figure out how to get the same behaviour, in OCaml, such as the C code below:
> 
> -----------------------------------------------------------------------------------------------
> 
>   sigset_t sigmask;
> 
>   sigemptyset(&sigmask);
>   sigaddset(&sigmask, SIGIO);      
>   sigprocmask(SIG_BLOCK, &sigmask, NULL);
>   
>   /*
>    *  Open UDP socket.
>    */
>   if( (sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0){
>     return sock ;      /* Can't open socket. */
>   }
>   
>   if (fcntl(sockfd, F_SETOWN, getpid()) == -1) return sock;
> 
>   val = fcntl(sockfd, F_GETFL, 0) ;
> 
>   val |= O_NONBLOCK ;
>   val |= FASYNC;
>   fcntl(sockfd, F_SETFL, val) ;
> 
> ------------------------------------------------------------------------------------
> 
> Could anyone help me?
> 
> Thanks,
> 
> Alex
> 
> 
> 
> 
> __________________________________________________
> Fale com seus amigos  de graça com o novo Yahoo! Messenger 
> http://br.messenger.yahoo.com/ 
> 
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
> 
-- 
------------------------------------------------------------
Gerd Stolpmann * Viktoriastr. 45 * 64293 Darmstadt * Germany 
gerd@gerd-stolpmann.de          http://www.gerd-stolpmann.de
Phone: +49-6151-153855                  Fax: +49-6151-997714
------------------------------------------------------------


      reply	other threads:[~2007-03-30 11:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-03-30  2:23 Alexsandro Soares
2007-03-30 11:28 ` Gerd Stolpmann [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1175254090.1530.225.camel@localhost.localdomain \
    --to=info@gerd-stolpmann.de \
    --cc=a_s_soares@yahoo.com.br \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).