public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libc/30287] New: sigevent needs a notification method compatible with poll
@ 2023-03-29 15:54 bugzilla at tecnocode dot co.uk
  2023-04-02 19:16 ` [Bug libc/30287] " fw at deneb dot enyo.de
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: bugzilla at tecnocode dot co.uk @ 2023-03-29 15:54 UTC (permalink / raw)
  To: glibc-bugs

https://sourceware.org/bugzilla/show_bug.cgi?id=30287

            Bug ID: 30287
           Summary: sigevent needs a notification method compatible with
                    poll
           Product: glibc
           Version: unspecified
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P2
         Component: libc
          Assignee: unassigned at sourceware dot org
          Reporter: bugzilla at tecnocode dot co.uk
                CC: drepper.fsp at gmail dot com
  Target Milestone: ---

I was recently trying to use `getaddrinfo_a()` to do asynchronous name lookups
in a library (GLib), and found that tying it in with a `poll()`/`epoll()`-based
main loop was quite hard.

sigevent currently provides two notification mechanisms: `SIGEV_SIGNAL` and
`SIGEV_THREAD` (I’m ignoring `SIGEV_THREAD_ID` because it’s basically just a
signal).

`SIGEV_SIGNAL` is not usable from libraries because to do so requires modifying
the process’ signal mask, which could impact on code outside the library, or on
spawned subprocesses.

`SIGEV_THREAD` spawns a new thread (via `pthread_create()`) for every return
from `getaddrinfo_a()`, which works but is not very performant.

Would it be possible to add an additional notification mechanism which writes
to a given FD, or something like that? Then that could easily be integrated
into the `poll()`-based main loop which is common to many libraries
(particularly those built around GLib, but also others) by passing one half of
a `pipe()` to sigevent.

Or perhaps another notification mechanism which just calls a provided function
and passes it an arbitrary user-supplied context pointer, and makes no
guarantees about the function execution context/thread? Then the user-supplied
function can do whatever it needs to to call back into the rest of the user
code in a thread-safe manner. This would be like `SIGEV_THREAD`, but calling
the user-provided function without `pthread_create()` first.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-05-15 14:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-29 15:54 [Bug libc/30287] New: sigevent needs a notification method compatible with poll bugzilla at tecnocode dot co.uk
2023-04-02 19:16 ` [Bug libc/30287] " fw at deneb dot enyo.de
2023-04-25 17:11 ` bugzilla at tecnocode dot co.uk
2023-04-25 17:16 ` fweimer at redhat dot com
2023-05-15 14:40 ` bugzilla at tecnocode dot co.uk

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 read-only IMAP folder(s) and NNTP newsgroup(s).