From: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
To: Steve <sbxenomai@domain.hid>
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai-help] select(2) generates EFAULT
Date: Mon, 18 May 2009 16:03:49 +0200 [thread overview]
Message-ID: <4A116AC5.7010704@domain.hid> (raw)
In-Reply-To: <abaf774b0905180656y4eddca23h6241c9dc031a3ba4@domain.hid>
Steve wrote:
> First, thank you for the help on my previous query.
>
> I am still working on porting a c++ application from RTAI to Xenomai,
> and have encountered a problem with sockets, specifically the select
> function.
>
> When Xenomai is not being used the code runs as expected. Once the
> Xenomai headers, compile options, etc, are used the select function
> fails with the error EFAULT. I have reproduced the error (works
> without Xenomai, EFAULTs with Xenomai) using the following program:
>
> #include <stdio.h>
> #include <arpa/inet.h>
> #include <errno.h>
>
> int handleError(char *msg, int err);
>
> int main(void)
> {
> int sfd;
> struct sockaddr_in sai;
> fd_set SockSet;
> struct timeval tv;
> tv.tv_sec = 2;
> tv.tv_usec = 0;
>
> sai.sin_family = AF_INET;
> sai.sin_port = htons(1025);
> sai.sin_addr.s_addr = htonl(INADDR_ANY);
>
> if((sfd = socket(AF_INET, SOCK_STREAM, 0)) == -1)
> { return handleError("creation error", errno); }
>
> if(bind(sfd, (struct sockaddr*)&sai, sizeof(sai)) == -1)
> { return handleError("bind error", errno); }
>
> if(listen(sfd, 5) == -1)
> { return handleError("listen error", errno); }
>
> FD_ZERO(&SockSet);
> FD_SET(sfd, &SockSet);
>
> if(select(sfd+1, &SockSet, 0, 0, &tv) == -1)
> { return handleError("select error", errno); }
>
> printf("success\n");
>
> return 0;
> }
>
> I am using Xenomai 2.4.6.1 on a vanilla 2.6.24.6 Linux kernel, and
> running on Ubuntu 8.04.
Could you try 2.4.7, to see if you are not having a bug which has
already been fixed?
What you are trying should work, even though you are not really using
Xenomai's select but Linux plain select.
--
Gilles.
next prev parent reply other threads:[~2009-05-18 14:03 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-18 13:56 [Xenomai-help] select(2) generates EFAULT Steve
2009-05-18 14:03 ` Gilles Chanteperdrix [this message]
2009-05-18 14:15 ` Jan Kiszka
2009-05-18 14:20 ` Gilles Chanteperdrix
2009-05-18 14:35 ` Jan Kiszka
2009-05-18 15:08 ` Steve
2009-05-18 15:17 ` Steve
2009-05-18 15:27 ` Gilles Chanteperdrix
2009-05-21 8:35 ` Steve
2009-05-21 8:46 ` Jan Kiszka
2009-05-27 15:12 ` Steve
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=4A116AC5.7010704@domain.hid \
--to=gilles.chanteperdrix@xenomai.org \
--cc=sbxenomai@domain.hid \
--cc=xenomai@xenomai.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.