• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: multiple symbols of select(), do they matter?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: multiple symbols of select(), do they matter?


  • Subject: Re: multiple symbols of select(), do they matter?
  • From: Luke Daley <email@hidden>
  • Date: Sun, 7 Sep 2008 18:59:11 +1000


On 07/09/2008, at 6:42 PM, Jean-Daniel Dupas wrote:

Why you do no simply call the matching function instead of using the same select call for all variants ?

for example

int select_unix2003(int nfds, fd_set * __restrict readfds, fd_set * __restrict writefds, fd_set * __restrict errorfds, struct timeval * __restrict timeout) {
my_before_select();
int result;
int (*real_select)(int nfds, fd_set * __restrict readfds, fd_set * __restrict writefds, fd_set * __restrict errorfds, struct timeval * __restrict timeout) = dlsym(RTLD_NEXT, "select$UNIX2003");
result = real_select(nfds, readfds, writefds, errorfds, timeout);
my_after_select();
return result;
}


That's what I am looking to do, was more curious about what the _actual_ differences are with the different symbols.

--

LD.

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Darwin-dev mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Follow-Ups:
    • Re: multiple symbols of select(), do they matter?
      • From: Jean-Daniel Dupas <email@hidden>
References: 
 >multiple symbols of select(), do they matter? (From: Luke Daley <email@hidden>)
 >Re: multiple symbols of select(), do they matter? (From: Jean-Daniel Dupas <email@hidden>)

  • Prev by Date: Re: multiple symbols of select(), do they matter?
  • Next by Date: Re: multiple symbols of select(), do they matter?
  • Previous by thread: Re: multiple symbols of select(), do they matter?
  • Next by thread: Re: multiple symbols of select(), do they matter?
  • Index(es):
    • Date
    • Thread